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

Quiz Instructions

Select an option to see the correct answer instantly.

1. Conditional:If you are a duck, then you drive a red car.What is this statement called:If you do not drive a red car, then you are not a duck.
2. Write this statement as a conditional statement."Thanksgiving in the United States falls on the fourth Thursday of November."
3. Converse:If an object is a strawberry, then it has seeds.
4. If the conditional statement was "If an angle is acute, then it has a measure less than 90$^\circ$.", which type of statement is the following?An angle is acute if and only if it has a measure less than 90$^\circ$.
5. How do you exit a loop prematurely in Python?
6. What will be the output of the following statement? print(str(int(float(int(5.6)))))
7. Consider the statement:If Ed lives in Texas, then he lives South of Canada.Is the statement TRUE/FALSE/Cannot be determined?
8. Identify the hypothesis of the statement:Two congruent angles are created when an angle is bisected
9. A concluding statement reached using inductive reasoning is called a .....
10. ..... is an act of sending an email to a user, misleading him to believe that it is from a trusting person or organization.
11. Conditional Statement:If an animal is a dog, then it has four legs.What is the conclusion?
12. Suppose we want to stop current iteration in a loop, what would be used?
13. Identify the hypothesis of the statement:A number that does not end with 3 is divisible by 2
14. Check the output.k=3 while k<6:print(k) k=k+1
15. What Javascript code matches this statement:The score is not 0
16. What is the purpose of using conditionals in programming?
17. Select the conditional statement of the biconditional statement:I am a junior if and only if I am in 11th grade.
18. If it is a triangle then it has three sides.What is the hypothesis?
19. If a figure is a rhombus, then the figure is a parallelogram.If a figure is a parallelogram, then the figure is a quadrilateral.
20. A contrapositive statement is formed by ..... they hypothesis and conclusion
21. What is the inverse of this statement:If it is Wednesday, then we do not have Geometry class.
22. What is a counterexample?
23. Conditional:If Mary gets married, then the reception will be at the country club.What is this statement:If the reception is at the country club, then Mary will be getting married.
24. "If the boy is smart, then he is talented" . What is the hypothesis?
25. The sum of two consecutive numbers is always an odd number.