Conditionals Quiz 42 (25 MCQs)

Quiz Instructions

Select an option to see the correct answer instantly.

1. In which month was he born and also died?
2. If Miss Amelia ..... the next bus, she ..... late for school! She still has a chance!
3. You will be late if you do not hurry.
4. I ..... (call) you if I ..... (not / forget) my phone.
5. By what name is he also known?
6. If I study hard, I ..... good grades. (Fill in the blank with the appropriate conditional)
7. If you ..... water to 100$^\circ$C, it boils.
8. Consider the following Java code snippet: "'javaint x = 10;if (x > 5) \{ x = x + 5;\} else \{ x = x-5;\} "'What is the value of 'x' after the code is executed?
9. Choose the correct option:'You wouldn't have this job if I ..... you for the interview.'
10. If she ..... (be) more organized, she wouldn't have missed the meeting yesterday.
11. You want to write a sentence combining a past condition and a present result. Which is best?
12. ..... buy the tickets online if I were you; they're much cheaper.
13. What type of conditional combines two different types of conditional patterns?
14. If I knew what kind of dog you (like), I would get it for you.
15. If she calls me later, I will tell her the news. What type of conditional is this?
16. Complete the sentence:If she ..... the lottery, she would travel the world.
17. What would happen if the number was less than zero?if (number > 0) \{ Console.WriteLine("The number is positive."); \} else if (number < 0) \{ Console.WriteLine("The number is negative."); \} else \{ Console.WriteLine("The number is zero."); \} \} \}
18. What was finally unveiled after five years of development and numerous challenges being overcome?
19. Transform the standard conditional 'If I took the bus, I wouldn't be stuck in traffic.' into a mixed conditional indicating that a past decision is affecting the present.
20. What is the purpose of 'elif' in Python conditional statements?
21. The books at the library are always counted .....
22. A conditional sentence that expresses a condition that is generally accepted to be true.
23. When do we use conditionals type 1?
24. Which type of conditional is used to talk about possible or likely situations?
25. Consider the following code:Pythonx = 5if 1 < x < 10:result = "x is between 1 and 10"else:result = "x is outside the range"What is the value of result?