Informatics Practices
Which of the following does not represent a complex number?
- K = 2 + 3j
- K = complex(2,3)
- K = 2 + 3i
- K = 4 + 3j
Related Questions
Python takes …………… indented spaces after the function declaration statement by default.
- 5
- 6
- 4
- 3
Single line comments in Python begin with …………… symbol.
- #
- "
- '''
- %
What is the order of precedence of arithmetic operators given below in Python?
(1) Parenthesis
(2) Exponential
(3) Multiplication
(4) Division
(5) Addition
(6) Subtraction- 1,2,3,4,5,6
- 2,3,4,5,6,1
- 1,3,2,6,4,5
- 4,6,5,2,3,1
What will be the output of the following snippet?
x, y = 2, 6 x, y = y, x + 2 print(x, y)- 6 6
- 4 4
- 4 6
- 6 4