Question 1
A control structure is used to control the flow of execution in a program, based on specified conditions.
True
False
Question 2
The while keyword is followed by a(n) ___________, then by a colon which denotes the beginning of the loop’s block of code.
input function
control structure
counter variables
condition statement
Question 3
What is the output of the following condition statement if A = 45: A >= "45"
True
False
Error message is displayed
Question 4
What is the output of the following condition statement if A = 45: A < 45
True
False
Error message is displayed
Question 5
What is the output of the following condition statement if A = "apple": A == "apple"
True
False
Error message is displayed
Question 6
There are three basic programming structures that are used in structured programming. These structures are (choose all that apply):