Choose a topic to test your knowledge and improve your Python skills
Output of print(2 * 3 ** 2) is
Write the output of the following: x = int(7) + int (‘9’) print(x)
Out of addition(+) and Subtraction (-) operator, which has more precedence?
Which of the following statement will return error when x = 7 ?
Which of the following store data in pair?
What is the return type of function id( )?
An ordered set of instructions to be executed by a computer to carry out a specific task is called ___
Computers understand the language of 0s and 1s which is called _______
A program written in a high-level language is called _________ code
Python uses ____ to convert its instructions into machine language.
Language translator convert ______________ code to _______________ code.
Which of the following is not the feature of python language?
In which of the following mode, the interpreter executes the statement and displays the result as soon as we press ‘Enter’ key?
By default, the Python scripts are saved with ____________ extension.
By default, the Python scripts are saved in ____
________ are reserved words.
Which of the following is not correct for naming an identifier in Python?
Comments in python program are ________________ by interpreter
In Python single line comment starts with __
In Python multi line comment starts with _________
Which of the following is a sequence data type?
_________ is a set of valid characters that a language can recognize.
The smallest individual unit in a program is known as _
Which of the following is token in Python?
Which of the following is String literal?
Variables of data types like integers, float etc., hold __
Which of the following is invalid data type in python?
Multiline string in python can be created by enclosing text in ____
Which of the following is mapping data type in Python?
Variables whose values can be changed after they are created and assigned are called __
An _______________ is a symbol which is used to perform specific mathematical or logical operation on values.
Operators work on values called ___
Which operator returns remainder?
86. Which of the following is an exponent operator?
Which of the following statement display “RAM” two times?
Write the output of the following: >>> 7 % 3 ** 3
Which of the following is not an integer literal?
Which escape sequence represent newline character?
Which of the following is number data type in python?
Which of the following is an invalid relational operator in Python?
print(3 != 4) will evaluates __
Which of the following is an assignment operator?
Statement x += y is equivalent to ______
Write the output of the following : >>> num1 = 7 >>> num2 = 3 >>> num1 //= num2 >>> num1
Write the output of the following : >>> a = 'India' >>> a *= 3 >>> a
Which of the following is invalid logical operator?
print(bool(3 and 6)) evaluates to __
print(bool(True and True or False)) evaluates to ___
101. >>> bool(0) evaluates to _
__________ operators are used to check if a value is a member of the given sequence or not.