Adaptive Practice
Programming
10 questions • Earn up to 92 XP • First attempt — go for 100%!
0
XP
0
Correct
x1
Combo
Question 1 of 10
⏱ 0:30
Easy
Which of the following is a correct syntax to declare an integer variable named 'score' in Python?
Easy
What will be the output of the following Python code?
x = 5
if x > 10:
print("Greater")
else:
print("Smaller or equal")
Medium
Which of the following is NOT a valid loop structure in Python?
Easy
In programming, what does 'syntax error' mean?
Medium
What is the output of this Python code snippet?
for i in range(3):
print(i)
else:
print("Done")
Medium
Which data structure is best suited to implement a 'Last In First Out' (LIFO) system?
Easy
Consider the following pseudocode:
if (score >= 90) then
grade = 'A'
else if (score >= 80) then
grade = 'B'
else
grade = 'C'
What will be the grade if score = 85?
Easy
Which of the following is a characteristic of a high-level programming language?
Medium
In Python, what is the result of the expression: 7 // 3?
Easy
Which of the following is the best example of a function in programming?