Class 11 Computer Science Chapter 4 Conditional And Iterative Statements Quiz 18 (25 MCQs)

Quiz Instructions

Select an option to see the correct answer instantly.

1. Consider the following statements. p:The sum of two angles is 180 degreesq:The two angles are supplementsWhich of the following is a symbolic representation of:If two angles are not supplements, then the sum of the two angles is not 180 degrees.
2. When using an if-else statement, what happens if the condition is false?
3. Original:If Emily is not late to class, then she will not be marked tardy.What is this? If Emily is late to class, then she will be marked tardy.
4. Given, "If I have a Siberian Husky, then I have a dog." Identify the inverse. #18
5. When can a biconditional statement be true?
6. Original:If Jenny buys a guitar, then she will not buy a keyboard.What is this? If Jenny does buy a keyboard, then she will not buy a guitar.
7. 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.
8. Given the conditional statement;"If it is Wednesday, then Jane doesn't have baseball practice."What is the hypothesis of this statement.
9. Identify the hypothesis and conclusion:If $3x-7=32$ $x=13.$
10. The ..... loop is used when you are sure about how many times a loop body will be executed.
11. If they ..... (wait) here, they ..... (be) late.
12. Conditional Statement:If you are in California, then you are in Los Angeles.What is the conclusion?
13. What do you call the second part of a conditional statement that follows the word "then" ?
14. Given the conditional statement;"If Max gets good grade, then he won't be grounded"Which of the following is the contrapositive?
15. Which of the following is the BICONDITIONAL of the statement below?If there is lightning, then there is thunder.
16. When writing a biconditional statement, we use the phrase ..... between the hypothesis and conclusion.
17. What phrase does a biconditional statement use?
18. We ..... (be) late if we ..... (not/hurry).
19. Identify the conclusion of the statement:Two congruent angles are created when an angle is bisected
20. What will be the output of the following code?name = "maria"if name == "melissa":print("usa")elif name == "mary":print("ireland")else:print("colombia")
21. 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.
22. In programming iteration is often referred to as .....
23. In a Boolean expression, what value is returned when both conditions are true?
24. Determine the truth value of the following8 is a prime number and 6 is an even number
25. Consider the statement:If Ed lives in Texas, then he lives South of Canada.What is the CONVERSE of this statement?