Study the following statement:
>>>"a"+"bc"
What will be the output of this statement?
Study the following statement:
>>>"a"+"bc"
What will be the output of this statement?
Study the following program:
- d = {0, 1, 2}
- for x in d:
- print(x)
What will be the output of this statement?
Study the following program:
- d = {0, 1, 2}
- for x in d:
- print(x)
What will be the output of this statement?
Study the following function:
round(4.576)
What will be the output of this function?
Study the following function:
round(4.576)
What will be the output of this function?
Study the following code:
x = ['XX', 'YY']
for i in a:
i.lower()
print(a)
What will be the output of this program?
Study the following code:
x = ['XX', 'YY']
for i in a:
i.lower()
print(a)
What will be the output of this program?
What do we use to define a block of code in Python language?
What do we use to define a block of code in Python language?
Study the following program:
- i = 1:
- while True:
- if i%3 == 0:
- break
- print(i)
Which of the following is the correct output of this program?
Study the following program:
- i = 1:
- while True:
- if i%3 == 0:
- break
- print(i)
Which of the following is the correct output of this program?
Which of the following is correctly evaluated for this function?
pow(x,y,z)
Which of the following is correctly evaluated for this function?
pow(x,y,z)
Who developed the Python language?
Who developed the Python language?
Which of the following option is not a core data type in the python language?
Which of the following option is not a core data type in the python language?
Study the following function:
any([5>8, 6>3, 3>1])
What will be the output of this code?
Study the following function:
any([5>8, 6>3, 3>1])
What will be the output of this code?
What is the method inside the class in python language?
What is the method inside the class in python language?
What is the maximum possible length of an identifier?
What is the maximum possible length of an identifier?
Which one of the following has the highest precedence in the expression?
Which one of the following has the highest precedence in the expression?
Which of the following statements is correct regarding the object-oriented programming concept in Python?
Which of the following statements is correct regarding the object-oriented programming concept in Python?
Study the following program:
- i = 0
- while i < 5:
- print(i)
- i += 1
- if i == 3:
- break
- else:
- print(0)
What will be the output of this statement?
Study the following program:
- i = 0
- while i < 5:
- print(i)
- i += 1
- if i == 3:
- break
- else:
- print(0)
What will be the output of this statement?
Which of the following declarations is incorrect?
Which of the following declarations is incorrect?
Which of the following declarations is incorrect in python language?
Which of the following declarations is incorrect in python language?
-
-
-
-
Study the following function:
all([2,4,0,6])
What will be the output of this function?
Study the following function:
all([2,4,0,6])
What will be the output of this function?
Which of the following operators is the correct option for power(ab)?
Which of the following operators is the correct option for power(ab)?
What error will occur when you execute the following code?
MANGO = APPLE
What error will occur when you execute the following code?
MANGO = APPLE
Which of the following is not a keyword in Python language?
Which of the following is not a keyword in Python language?
Which of the following words cannot be a variable in python language?
Which of the following words cannot be a variable in python language?
Study the following statements:
>>> str1 = "javat"
>>> str2 = ":"
>>> str3 = "point"
>>> str1[-1:]
What will be the output of this statement?
Study the following statements:
>>> str1 = "javat"
>>> str2 = ":"
>>> str3 = "point"
>>> str1[-1:]
What will be the output of this statement?
In which language is Python written?
In which language is Python written?
Which one of the following has the same precedence level?
Which one of the following has the same precedence level?