New to programming? 60 easy questions on core coding concepts every beginner developer should know — variables, loops, functions and more. Free!
1. What is an array?
💡 An array stores multiple values of the same type in a single variable with indexed positions.
2. What does "syntax" mean in programming?
💡 Syntax refers to the set of rules that define how programs must be written in a specific language.
3. What is a function in programming?
💡 A function is a named, reusable block of code that performs a specific task when called.
4. What does "if-else" do in programming?
💡 An if-else statement executes different code blocks based on whether a condition is true or false.
5. What is an algorithm?
💡 An algorithm is a step-by-step procedure or set of rules for solving a problem or completing a task.
6. What does "boolean" data type store?
💡 A boolean data type can only hold one of two values: True or False.
7. What is a loop in programming?
💡 A loop repeats a block of code multiple times until a condition is met.
8. What is "debugging"?
💡 Debugging is the process of identifying, analyzing, and fixing bugs (errors) in a program.
9. What is the purpose of a compiler?
💡 A compiler translates human-readable source code into machine code that a computer can execute.
10. What does "concatenation" mean in programming?
💡 String concatenation joins two or more strings together: "Hello" + " World" = "Hello World".