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

Quiz Instructions

Select an option to see the correct answer instantly.

1. If it is a fraction, then it is a number between zero and one. What is an appropriate counterexample?
2. The ..... comes after the "then."
3. Check the output.i=0while i<=5:print(i) i=i+1
4. Choose the BEST example of a thesis statement
5. The conditional statement, in Javascript, begins with the word .....
6. Given the conditional statement;"If Beryl gets good grade, then he won't be grounded"Which of the following is the contrapositive?
7. Write the if-then form given the following data.Hypothesis:We leave the house early.Conclusion:We can catch the bus.
8. Comparison OperatorsWhat is >=?
9. Which property says 10y = 10y?
10. For i in 100:print ( i )
11. 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?If an angle does not have a measure less than 90$^\circ$, then it is not acute.
12. What is the hypothesis of the statement, "If 3 or more points lie on the same line, then the points are collinear." ?
13. If the weather ..... (not/improve), we ..... (not/have) a picnic.
14. Conditional Statement:If you are in Pacoima, then you are in Los Angeles County.
15. Re-write the statement "An angle that measures 70$^\circ$ is an acute angle" into if-then form
16. Name the two membership operators in python.
17. If you are resting, then you will be relaxed.If your heartbeat is normal, then you are relaxed.
18. Equilateral triangles have 3 congruent sides. Write in "if-then" form.
19. What does "==" represent in Python programming?
20. What is the conclusion of the given statement "A quadrilateral is a figure with four sides" ?
21. Which property says that if k = 3, then 3 = k?
22. Identify the conclusion of the statement:A number that does not end with 3 is divisible by 2
23. Conditional Statement:If an animal is a dog, then it has four legs.What is the hypothesis?
24. Write the statement in if-then form:A number that does not end with 3 is divisible by 2
25. What is the output of the following code?x = 5if x > 10:print('Greater than 10')else:print('Less than or equal to 10')