QUIZ

1. Identify the wrong variable name.

Simran_bh_
1abc
_a
simran13
2. Find out the output of this program
a = 6
b = 2
print(a * b)

8
18
16
12
3. Identify the output
a = 5
b = 4
print("The remainder is",a % b)

The reminder is 2
The reminder is 1
The reminder is 3
The reminder is 5
4. What type of operator is this ( = ).

Equals to
Equal
Assignment
Equality
5. What type of operator is this ( % ).

Divider
Division
Modulus
Percentage