wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

TERM 1 REVISION QUIZ 2-GRADE 11

Total questions: 10

Worksheet time: 10mins

Name
Class
Date
1.

Which of the below calculates power on operators and assigns result to left

operand?

a)

&=

b)

**=

c)

}=

d)

;=

2.

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?

a)

Break

b)

While

c)

Continue

d)

If...then

3.

This loop repeats a statement or group of statements while a given condition is TRUE. It tests the condition before executing the loop body.

a)

nested

b)

while

c)

for

d)

elif

4.

The (a)   statement is used to terminate the loop when a certain condition is met.

5.

Index of first item is 0 and the last item is n-1.

a)

FALSE

b)

TRUE

6.

Given list is:

list =['I','N','D','I','A']

for Print(list[1:4:2]) What will be the output?

a)

[‘D‘,'I']

b)

['D',‘N‘,'I']

c)

[‘N‘,'I']

d)

[‘I‘,'N']

7.

(a)   function can be used to assign a new value to an Already existing value using assignment operator (=)

8.

Which of below determines the order in which individual statements or instructions are executed?

a)

Algorithm

b)

Flowchart

c)

Program Flow Control

d)

Iteration

9.

State 2 advantages of Python.

4 lines
10.

State 2 features of Python

4 lines