Question: Which statement about if-else-if-else statements is true?
- If the first else-if does not succeed, then no other else-ifs are tested.
- If an else-if does not succeed, then none of the remaining else-if statements or elses will be tested.
- All else-if statements are tested in all cases.
- If an else-if succeeds, then none of the remaining else-if statements or elses will tested.
Answer: The correct answer of the above question is Option D:If an else-if succeeds, then none of the remaining else-if statements or elses will tested.