11.
Single line comments in python begin with _____ symbol.
(a) %
(b) &
(c) $
(d) #
12.
Which of the following are the fundamental building blocks of a Python program?
(a) Identifiers
(b) Constants
(c) Punctuators
(d) Tokens
13.
Identifier name cannot be composed of special characters other than ______
(a) $
(b) #
(c) Hypen(-)
(d) Underscope(_)
14.
Python takes _______ indented spaces after the function declaration statment by default
(a) 5
(b) 6
(c) 4
(d) 3
15.
Which of the following does not represent a complex number?
(a) k=12+23j
(b) k=complex(3,5)
(c) k=3+5i
(d) d=4+3j