Font size
WorksheetsTERM 1 REVISION QUIZ 2-GRADE 11
Total questions: 10
Worksheet time: 10mins
Which of the below calculates power on operators and assigns result to left
operand?
&=
**=
}=
;=
Which statement is used inside a loop to skip the rest of the statements in the body of loop for the current iteration and jump to the beginning of the loop for next iteration?
Break
While
Continue
If...then
This loop repeats a statement or group of statements while a given condition is TRUE. It tests the condition before executing the loop body.
nested
while
for
elif
The (a) statement is used to terminate the loop when a certain condition is met.
Index of first item is 0 and the last item is n-1.
FALSE
TRUE
Given list is:
list =['I','N','D','I','A']
for Print(list[1:4:2]) What will be the output?
[‘D‘,'I']
['D',‘N‘,'I']
[‘N‘,'I']
[‘I‘,'N']
(a) function can be used to assign a new value to an Already existing value using assignment operator (=)
Which of below determines the order in which individual statements or instructions are executed?
Algorithm
Flowchart
Program Flow Control
Iteration
State 2 advantages of Python.
State 2 features of Python
