Python is a widely used programming language known for its simplicity. Practice these multiple-choice questions to improve your understanding of Python concepts with answers.
1) What is the maximum possible length of an identifier?
Answer: (d) None of these above
Explanation: The maximum possible length of an identifier is not defined in the python language. It can be of any number.
2) Who developed the Python language?
Answer: (b) Guido van Rossum
Explanation: Python language was developed by Guido van Rossum in the Netherlands.
3) In which year was the Python language developed?
Answer: (d) 1989
Explanation: Python language was developed by Guido van Rossum in 1989.
4) In which language is Python written?
Answer: (c) C
Explanation: Python is written in C programming language, and it is also called CPython.
5) Which one of the following is the correct extension of the Python file?
Answer: (a) .py
Explanation: ".py" is the correct extension of the Python file.
6) In which year was the Python 3.0 version developed?
Answer: (a) 2008
Explanation: Python 3.0 version was developed on December 3, 2008.
7) What do we use to define a block of code in Python language?
Answer: (c) Indentation
Explanation: Python uses indentation to define blocks of code. Indentations are simply spaces or tabs used as an indicator that is part of the indent code child. As used in curly braces C, C++, and Java.
8) Which character is used in Python to make a single line comment?
Answer: (c) #
Explanation: "#" character is used in Python to make a single-line comment.
9) Which of the following statements is correct regarding the object-oriented programming concept in Python?
Answer: (b) Objects are real-world entities while classes are not real
Explanation: None
10) Which of the following statements is correct in this python code?
Answer: (b) id(name1) and id(name2) will have same value
Explanation: "name1" and "name2" refer to the same object, so id(name1) and id(name2) will have the same value.
11) What is the method inside the class in python language?
Answer: (b) Function
Explanation: Function is also known as the method.
12) Which of the following declarations is incorrect?
Answer: (d) None of these
Explanation: All declarations will execute successfully but at the expense of low readability.
13) Why does the name of local variables start with an underscore discouraged?
Answer: (c) It indicates a private variable of a class
Explanation: Since there is no concept of private variables in Python language, the major underscore is used to denote variables that cannot be accessed from outside the class.
14) Which of the following is not a keyword in Python language?
Answer: (a) val
Explanation: "val" is not a keyword in python language.
15) Which of the following statements is correct for variable names in Python language?
Answer: (b) Unlimited length
Explanation: None
16) Which of the following declarations is incorrect in python language?
Answer: (b) x y z p = 5000 6000 7000 8000
Explanation: Spaces are not allowed in variable names.
17) Which of the following words cannot be a variable in python language?
Answer: (c) try
Explanation: "try" is a keyword.
18) Which of the following operators is the correct option for power(ab)?
Answer: (b) a**b
Explanation: The power operator in python is a**b, i.e., 2**3=8.
19) Which of the following precedence order is correct in Python?
Answer: (a) Parentheses, Exponential, Multiplication, Division, Addition, Subtraction
Explanation: PEMDAS (similar to BODMAS).
20) Which one of the following has the same precedence level?
Answer: (b) Division and Multiplication
Explanation: None
21) Which one of the following has the highest precedence in the expression?
Answer: (d) Parentheses
Explanation: PEMDAS (similar to BODMAS).
22) Which of the following functions is a built-in function in python language?
Answer: (b) print()
Explanation: The print() function is a built-in function in python language that prints a value directly to the system.
23) Study the following function:
What will be the output of this function?
Answer: (d) 5
Explanation: The round function is a built-in function in the Python language that round-off the value (like 3.85 is 4), so the output of this function will be 5.
24) Which of the following is correctly evaluated for this function?
Answer: (c) (x**y) % z
Explanation: None
25) Study the following function:
What will be the output of this function?
Answer: (a) False
Explanation: If any element is zero, it returns a false value, and if all elements are non-zero, it returns a true value. Hence, the output of this "all([2,4,0,6])" function will be false.
26) Study the following program:
What will be the output of this code?
Answer: (a) error
Explanation: Syntax error, there should not be a space between + and =.
27) Which one of the following syntaxes is the correct syntax to read from a simple text file stored in ''d:\java.txt''?
Answer: (a) Infile = open(''c:\\scores.txt'', ''r'')
Explanation: None
28) Study the following code:
What will be the output of this program?
Answer: (a) ['XX', 'YY']
Explanation: None
29) Study the following function:
What will be the output of this code?
Answer: (d) 6.0
Explanation: This function prints the square of the value.
30) Study the following function:
What will be the output of this code?
Answer: (b) True
Explanation: None
31) Study the following statement:
What will be the output of this statement?
Answer: (b) abc
Explanation: In Python, the "+" operator acts as a concatenation operator between two strings.
32) Study the following code:
What will be the output of this code?
Answer: (c) point
Explanation: Slice operation is performed on the string.
33) The output to execute string.ascii_letters can also be obtained from:?
Answer: (d) string.ascii_lowercase+string.ascii_upercase
Explanation: None
34) Study the following statements:
What will be the output of this statement?
Answer: (a) t
Explanation: The correct output of this program is "t" because -1 corresponds to the last index.
35) Study the following code:
What will be the output of this statement?
Answer: (c) \njavat\npoint
Explanation: None
36) Study the following statements:
What will be the output of this statement?
Answer: (a) 33
Explanation: A, B and C are hexadecimal integers with values 10, 11 and 12 respectively, so the sum of A, B and C is 33.
37) Study the following program:
Which of the following is the correct output of this program?
Answer: (d) Error is generated
Explanation: Error is generated because self.o1 was never created.
38) Study the following program:
What will be the output of this statement?
Answer: (d) Wick Nick
Explanation: None
39) Study the following statements:
What will be the output of this statement?
Answer: (b) -18
Explanation: ASCII value of h is less than the z. Hence the output of this code is 104-122, which is equal to -18.
40) Study the following program:
Which of the following is correct output of this program?
Answer: (a) ['xy', 'yz']
Explanation: None
41) Study the following program:
Which of the following is the correct output of this program?
Answer: (d) Invalid syntax
Explanation: Invalid syntax, because this declaration (i = 1:) is wrong.
42) Study the following program:
Which of the following is correct output of this program?
Answer: (b) 1 2 3 4 5 6
Explanation: None
43) Study the following program:
What will be the output of this statement?
Answer: (c) 0 1 2
Explanation: None
44) Study the following program:
What will be the output of this statement?
Answer: (c) 0 1 2 0
Explanation: None
45) Study the following program:
What will be the output of this statement?
Answer: (b) No output
Explanation: "j" is not in "xyz".
46) Study the following program:
Which of the following is the correct output of this program?
Answer: (b) pqrs
Explanation: None
47) Study the following program:
What will be the output of this statement?
Answer: (b) 0 1 2
Explanation: None
48) Study the following program:
What will be the output of this statement?
Answer: (b) 0 1 2
Explanation: None
49) Which of the following option is not a core data type in the python language?
Answer: (c) Class
Explanation: Class is not a core data type because it is a user-defined data type.
50) What error will occur when you execute the following code?
Answer: (a) NamaError
Explanation: Mango is not defined hence the name error.
51) Study the following program:
What will be the output of this statement?
Answer: (d) indentationError
Explanation: None
52) Which of the following data types is shown below?
What will be the output of this statement?
Answer: (c) List
Explanation: Any value can be stored in the list data type.
53) What happens when '2' == 2 is executed?
Answer: (a) False
Explanation: It only evaluates to false.
54) Study the following program:
What will be the output of this statement?
Answer: (a) invalid code
Explanation: A new exception class must inherit from a BaseException, and there is no such inheritance here.
55) Study the following statement
Which of the following is the correct statement?
Answer: (d) All of the above
Explanation: All of the above statements is correct regarding Python code.
We request you to subscribe our newsletter for upcoming updates.