Computer Programming Examination (Python, Java, C++)
Total Questions: 100 Format: Short Answer / Multiple Choice Style Level: Beginner to Intermediate SECTION A: General Programming Concepts (1–25) Q: What is programming? A: The process of writing instructions for a computer to execute. Q: What is a programming language? A: A formal language used to communicate with a computer. Q: What is a variable? A: A storage location identified by a name that holds data. Q: What is an algorithm? A: A step-by-step method for solving a problem. Q: What is a compiler? A: A program that converts source code into machine code. Q: What is an interpreter? A: A program that executes code line by line. Q: What is debugging? A: The process of finding and fixing errors in code. Q: What is syntax? A: The set of rules defining the structure of code in a language. Q: What is pseudocode? A: A plain-language outline of a program’s logic. Q: What is a data type? A: Defines the type of data a variable can store (e.g., int, float, string). Q: What is a constant? A: A ...






