Adaptive Practice
Programming
8 questions • Earn up to 79 XP • First attempt — go for 100%!
0
XP
0
Correct
x1
Combo
Question 1 of 8
⏱ 0:30
Easy
What is the main purpose of a programming language?
Easy
Which of the following is a popular programming language often used to create websites?
Medium
In programming, what does 'syntax' refer to?
Easy
What will the following Python code print?
print(6 * 7)
Medium
Which of these is an example of a loop in programming?
Easy
In programming, what is a 'variable'?
Medium
What does 'debugging' mean in programming?
Hard
Consider this pseudocode:
START
SET score = 0
FOR each ball in 6 balls
ADD 4 to score
END FOR
PRINT score
END
What will be the output?