11.
Which of the following are symbols used for computation or logical comparison in a program?
a. Identifiers
b. Literals
c. Keywords
d. Operators
12.
Which of the following is correct statement to compute square of variable x in python?
a. x * 2
b. x power 2
c. x ** 2
d. x // 2
13.
If you want to display the values without decimal place after division, which of the following symbol is used?
a. /
b. //
c. %
d. **
14.
Which of the is a correct statement?
a. xyz = 10 100 1000
b. x y z = 10 100 1000
c. x, y, z = 10, 100, 1000
d. x y z= 10, 100, 1000
15.
Which of the following are symbols used in programming languages to organize statement structures and inidicate the rythm of the program?
a. Operators
b. Punctuators
c. Functions
d. Literals