If your piece of code has a too many conditional statements, it’s a sign of code smell. For example, lets say you want to make a Covid Vaccination App which requires you to check if the user is eligible for the vaccination. public boolean CheckVaccineEligibility(String vaccineChosen)
{
if(vaccineChosen=="Covaxin")…