Class 11 Computer Science Chapter 4 Conditional And Iterative Statements Quiz 2 (60 MCQs)

Quiz Instructions

Select an option to see the correct answer instantly.

1. If the weather ..... (not/improve), we ..... (not/have) a picnic.
2. Conditional Statement:If you are in Pacoima, then you are in Los Angeles County.
3. Re-write the statement "An angle that measures 70$^\circ$ is an acute angle" into if-then form
4. Name the two membership operators in python.
5. If you are resting, then you will be relaxed.If your heartbeat is normal, then you are relaxed.
6. Equilateral triangles have 3 congruent sides. Write in "if-then" form.
7. What does "==" represent in Python programming?
8. What is the conclusion of the given statement "A quadrilateral is a figure with four sides" ?
9. Which property says that if k = 3, then 3 = k?
10. Identify the conclusion of the statement:A number that does not end with 3 is divisible by 2
11. Conditional Statement:If an animal is a dog, then it has four legs.What is the hypothesis?
12. Write the statement in if-then form:A number that does not end with 3 is divisible by 2
13. What is the output of the following code?x = 5if x > 10:print('Greater than 10')else:print('Less than or equal to 10')
14. Identify the conclusion of the statement:It always rains when it is cloudy
15. Which best describes the hypothesis of the statement "If tomorrow is Monday, then today is Sunday." ?
16. These sentences are in the Present Real Conditional or in the Future Real Conditional? Check the correct answer.
17. If you square a number, then the answer is positive. What would be an appropriate counterexample?
18. The program generates an error message if the "else" statement is not defined
19. What is the purpose of using Boolean variables in programming?
20. Which is the best conclusion of the hypothesis:If you are 15 years old and below,
21. Refer to the following statement: "If a polygon is a quadrilateral, then it is a trapezoid."What is the converse of this statement?
22. Given the hypothesis and the conclusion respectively, transform into an if-then statement.Hypothesis:two lines are parallelConclusion:they do not intersect
23. What is the hypothesis of the given statement "A quadrilateral is a figure with four sides" ?
24. If I ..... (go) out tonight, I ..... (go) to the cinema.
25. Negating both the hypothesis and conclusion of the original conditional is the .....
26. What is the syntax for an if statement in most programming languages?
27. A counterexample is an example that proves a conjecture to be true.
28. Given the conditional;"If Jose eats fish, then he has an allergic reaction"Which of the following is the converse?
29. I=10while(i<=15):print(i)i=i+1
30. Write the conclusion of the statement, "If you are Anthony Rizzo, then you are a Chicago Cub."
31. Determine whether the stated conclusion is valid.Given:If an animal is a dog, then they like biscuits.Sammy is a dog.Conclusion:Sammy likes biscuits.
32. Read the statement, then the phrase. Determine whether the phrase is the hypothesis or conclusion of the conditional statement."If you are reading a book on antigravity, then you can't put it down."you can't put it down
33. What is the syntax for a switch statement in programming?
34. It is possible to execute both the statements under if and else at the same time.
35. What are the two parts of a conditional statement?
36. The relational operators cannot be used within a if condition
37. Total how many different type of loops are there in python?
38. Which of the following is the CONTRAPOSITIVE of the statement below?If a gem is a ruby, then it is red.
39. Identify the conclusion of the statement:Three coplanar points are also colinear
40. What is the converse statement of "If a number is divisible by 3, then it is divisible by 9." ?
41. If possible, use the Law of Detachment to draw a conclusion from the two given statements. If not possible, write not possible.Conditional:If there is lightning, then it is not safe to out in the open. Premise:Mary sees lightning from her home
42. Read the statement, then the phrase. Determine whether the phrase is the hypothesis or conclusion of the conditional statement."If you fill your sink with water, then you can wash the dishes."you can wash the dishes
43. Which of the following makes the best thesis statement?
44. Which statement is used to execute a block of code only if a condition is true?
45. Read the statement, then the phrase. Determine whether the phrase is the hypothesis or conclusion of the conditional statement."If a figure has seven sides, then it is a heptagon."it is a heptagon
46. Conditional statement symbol
47. Which two statements should both be true to have a biconditional statement?
48. If we ..... (not/see) each other tomorrow, we ..... (see) each other next week.
49. What is the biconditional statement of the following conditional statement? "If Shelly lives in Texas, then she lives in the United States."
50. What is the conclusion to this statement?If Susan gives us Mountain Dew, then she will be the coolest.
51. Given, "If I have a Siberian Husky, then I have a dog." Identify the hypothesis.
52. Write each statement as a conditional statement."Two angles are always equal when they are vertical."
53. If it is a number, then it is either positive or negative. What is an appropriate counterexample?
54. "If this month is October, then the following month is November" . What is the conclusion?
55. Write each statement as a conditional statement."All healthy dogs have four paws."
56. Which sentence would be the better thesis statement for the introductory paragraph of an essay?
57. Identify the hypothesis of this conditional:If Sally goes to the park, then she will fall off the swing.
58. What is the format for the inverse of a conditional statement?
59. Describe the validity of the conditional statement?If Jake lives in New Jersey, then he lives in Ramsey.
60. What is the negation of "x > 3" ?