Programming basics

123456789101112
Across
  1. 3. If a = 5 and b = 10, what is a < b?
  2. 4. Which data type can only hold one of two values: true or false?
  3. 5. What data type stores a sequence of characters like "Hello World" or "12345"?
  4. 7. using > instead of < in a condition likely to cause a syntax, runtime, or logic error?
  5. 8. What data type holds a collection of elements of the same type, like a list of integers?
  6. 10. What error occurs if you forget a semicolon at the end of a statement in C++?
  7. 12. Which operator checks equality?
Down
  1. 1. What data type is used to store whole numbers like -10, 0, or 42?
  2. 2. What is the word for finding and fixing errors in a code?
  3. 6. What data type is used to store numbers with decimal points, like 3.14 or -0.001?
  4. 9. What type of error occurs when you try to divide a number by zero during program execution?
  5. 11. Which data type holds a single letter or symbol, such as 'A' or '?'?