16.
What will be the output of the following code
a,b=2,6
a,b=b,a+2
print(a,b)
(a) 6 6
(b) 4 4
(c) 4 6
(d) 6 4
17.
Python is the fasted language
(a) True
(b) False
18.
Python code is complied before running
(a) True
(b) False
19.
You can create Python programs in Python’s interactive mode.
(a) True
(b) False
20.
You can create a program in Python’s script mode
(a) True
(b) False