Coding Basics Quiz
Try out this Coding Basics quiz to test your knowledge. Coding Basics Trivia trivia explores the foundations of programming through questions about concepts like variables, logic, syntax, and problem-solving.
15 questions
~3 min to finish
Easy to hard difficulty
550 pts max score
Question 1 · Hard · 40 pts
At the moment a function is invoked, what is the value passed into that call called?
Question 2 · Medium · 20 pts
Which coding term means a blueprint for creating objects, not an actual object itself?
Question 3 · Hard · 40 pts
Which term names the tool that converts source code into machine code or another lower-level form before execution?
Question 4 · Hard · 40 pts
What is the runtime-focused translator called when code is translated as the program runs?
Question 5 · Hard · 40 pts
In a function definition rather than a function call, what do you call the listed value placeholder?
Question 6 · Hard · 40 pts
Which data structure stores multiple values under one name, usually in indexed order?
Question 7 · Hard · 40 pts
What is the name for the place that stores a project's files and history together?
Question 8 · Hard · 40 pts
If incorrect program behavior is corrected, what is that correction called?
Question 9 · Hard · 40 pts
What phrase describes code that is easier to understand and maintain?
Question 10 · Hard · 40 pts
Name the term for a value that appears in the signature side of a function, not the calling side.?
Question 11 · Hard · 40 pts
Which word belongs to the caller side of a function interaction: the value supplied at use time?
Question 12 · Hard · 40 pts
A playful one: if your code misbehaves and you actually correct that behavior instead of just glaring at it, what have you made?
Question 13 · Hard · 40 pts
Which term fits something that keeps many values gathered under a single name and commonly arranges them by index?
Question 14 · Hard · 40 pts
What is the correct term for the translator that works during execution instead of producing a lower-level form ahead of time?
Question 15 · Easy · 10 pts
Which coding tool checks a condition so a program can choose between actions?