Class 11 Computer Science Chapter 4 Conditional And Iterative Statements Quiz 8 (33 MCQs)

Quiz Instructions

Select an option to see the correct answer instantly.

1. Which of the following is a biconditional of the following statements?If segments are congruent, then they have equal lengths.If segments of equal lengths, then they are congruent.
2. Given the conditional statement;"If it is Wednesday, then Jane doesn't have baseball practice."What is the hypothesis of this statement.
3. Identify the hypothesis and conclusion:If $3x-7=32$ $x=13.$
4. If they ..... (wait) here, they ..... (be) late.
5. Conditional Statement:If you are in California, then you are in Los Angeles.What is the conclusion?
6. What do you call the second part of a conditional statement that follows the word "then" ?
7. Given the conditional statement;"If Max gets good grade, then he won't be grounded"Which of the following is the contrapositive?
8. Which of the following is the BICONDITIONAL of the statement below?If there is lightning, then there is thunder.
9. When writing a biconditional statement, we use the phrase ..... between the hypothesis and conclusion.
10. What phrase does a biconditional statement use?
11. We ..... (be) late if we ..... (not/hurry).
12. Identify the conclusion of the statement:Two congruent angles are created when an angle is bisected
13. What will be the output of the following code?name = "maria"if name == "melissa":print("usa")elif name == "mary":print("ireland")else:print("colombia")
14. Determine the truth value of the conditional statement. If true, explain your reasoning. If false, give a counterexample.If I roll two six-sided dice and sum of the numbers is 11, then one die must be a five.
15. In programming iteration is often referred to as .....
16. In a Boolean expression, what value is returned when both conditions are true?
17. Determine the truth value of the following8 is a prime number and 6 is an even number
18. Consider the statement:If Ed lives in Texas, then he lives South of Canada.What is the CONVERSE of this statement?
19. Before choosing a position or side, you should
20. A inverse statement is formed by ..... the hypothesis and the conclusion
21. What is the format for a conditional statement?
22. Choose a negation for the following statement:41 is a prime number
23. Converse:If a man is bilingual, then he speaks two languages.
24. What will be the output of the following code?if "cat" == "dog":print("prrrr")else:print("ruff")
25. For the inverse we ..... the hypothesis and conclusion
26. Which property says if 3x = 2y and 2y = z, then 3x = z?
27. True or False:If it is St. Patrick's day, then it is march
28. The sum of the angles of a triangle is equal to 180 degrees in ..... geometry.
29. If Wendy ..... (go) on holiday this summer, she ..... (go) to Spain.
30. A ..... is a legal right granted by the law to the creator for his original work.
31. "If the boy is smart, then he is talented" . What is the conclusion?
32. What does a nested conditional refer to?
33. How do you write the converse of a conditional statement?