Conditionals Quiz 35 (30 MCQs)

Quiz Instructions

Select an option to see the correct answer instantly.

1. If I had started to play the piano a few years ago, ..... at the concert.
2. Listening. Listen to a radio show. Then read the statements and decide if they are True or False.3. Carla and Bruno agree on some things but not on others.
3. Complete the sentence:If I had a million dollars, .....
4. If you don't tell her the truth, she ..... angry with you!
5. If she ..... French, she could get the job.
6. In which month was he born and also died?
7. If Miss Amelia ..... the next bus, she ..... late for school! She still has a chance!
8. You will be late if you do not hurry.
9. I ..... (call) you if I ..... (not / forget) my phone.
10. By what name is he also known?
11. If I study hard, I ..... good grades. (Fill in the blank with the appropriate conditional)
12. If you ..... water to 100$^\circ$C, it boils.
13. 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?
14. Choose the correct option:'You wouldn't have this job if I ..... you for the interview.'
15. If she ..... (be) more organized, she wouldn't have missed the meeting yesterday.
16. You want to write a sentence combining a past condition and a present result. Which is best?
17. ..... buy the tickets online if I were you; they're much cheaper.
18. What type of conditional combines two different types of conditional patterns?
19. If I knew what kind of dog you (like), I would get it for you.
20. If she calls me later, I will tell her the news. What type of conditional is this?
21. Complete the sentence:If she ..... the lottery, she would travel the world.
22. 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."); \} \} \}
23. What was finally unveiled after five years of development and numerous challenges being overcome?
24. 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.
25. What is the purpose of 'elif' in Python conditional statements?
26. The books at the library are always counted .....
27. A conditional sentence that expresses a condition that is generally accepted to be true.
28. When do we use conditionals type 1?
29. Which type of conditional is used to talk about possible or likely situations?
30. 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?