#1 Flashcards
What is a variable in programming?
A storage location identified by a variable name that holds data.
True or False: A function is a reusable block of code that performs a specific task.
True
Fill in the blank: The _____ is a sequence of instructions that a computer can execute.
program
What does ‘syntax’ refer to in programming languages?
The set of rules that defines the combinations of symbols that are considered to be correctly structured programs.
What is an algorithm?
A step-by-step procedure for solving a problem or accomplishing a task.
Multiple Choice: Which of the following is NOT a programming language? A) Python B) HTML C) Java D) CSS
B) HTML
What is the purpose of a loop in programming?
To execute a block of code repeatedly until a specified condition is met.
True or False: Object-oriented programming is based on the concept of ‘objects’ which can contain data and code.
True
Fill in the blank: A _____ is a collection of data items that are stored under a single name.
data structure
What is a compiler?
A program that translates code written in a high-level programming language into machine code.
Multiple Choice: Which symbol is used for comments in Python? A) // B) # C) /* D) –
B) #
What is debugging?
The process of identifying and removing errors from computer software or hardware.
True or False: A database is used to store and manage data.
True
Fill in the blank: The _____ is a part of a program that specifies what data will be stored and how it will be organized.
data model
What does ‘API’ stand for?
Application Programming Interface
Multiple Choice: Which of the following is a type of loop? A) For loop B) While loop C) Do-while loop D) All of the above
D) All of the above
What is a class in object-oriented programming?
A blueprint for creating objects that defines a set of attributes and methods.
True or False: A stack is a data structure that follows the Last In First Out (LIFO) principle.
True
Fill in the blank: In programming, an _____ is a named section of a program that performs a specific task.
function
What is recursion?
When a function calls itself in order to solve a problem.
Multiple Choice: Which of the following is a common version control system? A) Git B) GitHub C) Bitbucket D) All of the above
D) All of the above
What is a framework?
A platform for developing software applications that provides a foundation to build upon.
True or False: A bug is an error in a program that causes it to produce incorrect or unexpected results.
True
Fill in the blank: The _____ is a section of code that is executed when a specific condition is met.
conditional statement
What is a variable scope?
The context in which a variable is defined and accessible within a program.
Multiple Choice: Which of the following is a widely used programming paradigm? A) Procedural programming B) Functional programming C) Object-oriented programming D) All of the above
D) All of the above
What does ‘debugger’ refer to?
A tool used to test and debug programs by allowing the programmer to inspect the execution of code.
True or False: A binary tree is a data structure where each node has at most two children.
True
Fill in the blank: The _____ is the main function in a C program from which execution begins.
main function
What is an IDE?
Integrated Development Environment, a software application that provides comprehensive facilities to programmers for software development.
Multiple Choice: Which of the following is a markup language? A) Java B) HTML C) Python D) C++
B) HTML
What is the purpose of comments in code?
To provide explanations or annotations for the code to make it more understandable.
True or False: A constant is a variable whose value cannot change during program execution.
True
Fill in the blank: The _____ is a programming construct that allows for the execution of code based on certain conditions.
if statement
What is a library in programming?
A collection of precompiled routines that a program can use.
Multiple Choice: Which of the following is a popular database management system? A) MySQL B) Java C) HTML D) CSS
A) MySQL
What does ‘syntax error’ mean?
An error that occurs when the code does not conform to the rules of the programming language.
True or False: A function can return multiple values.
True
Fill in the blank: A _____ is a placeholder for a value in a function.
parameter
What is a prototype in programming?
A preliminary model of a function that specifies its name, return type, and parameters.
Multiple Choice: Which of the following is a type of sorting algorithm? A) Bubble sort B) Quick sort C) Merge sort D) All of the above
D) All of the above
What is encapsulation in object-oriented programming?
The bundling of data and methods that operate on that data within one unit.
True or False: A queue is a data structure that follows the First In First Out (FIFO) principle.
True
Fill in the blank: The _____ is a special type of function that is automatically called when an object is created.
constructor
What is a syntax tree?
A tree representation of the syntactic structure of source code.
Multiple Choice: Which of the following is a web development framework? A) Django B) Flask C) Ruby on Rails D) All of the above
D) All of the above
What is a thread in programming?
A sequence of programmed instructions that can be managed independently by a scheduler.
True or False: An exception is an unexpected event that occurs during the execution of a program.
True
Fill in the blank: The _____ is a programming concept that allows for the creation of new classes based on existing ones.
inheritance
What does ‘polymorphism’ mean in programming?
The ability of different classes to be treated as instances of the same class through a common interface.
Multiple Choice: Which of the following is a common data type? A) Integer B) String C) Boolean D) All of the above
D) All of the above
What is a hash table?
A data structure that implements an associative array abstract data type, a structure that can map keys to values.
True or False: A prototype chain is a mechanism by which JavaScript objects inherit features from one another.
True
Fill in the blank: A _____ is a programming construct that allows for the execution of code multiple times.
loop
What is a software development lifecycle (SDLC)?
A process for planning, creating, testing, and deploying software.
Multiple Choice: Which of the following is a common software testing technique? A) Unit testing B) Integration testing C) System testing D) All of the above
D) All of the above
What is a semantic error?
An error where the program runs but produces incorrect results.
True or False: A method is a function associated with an object in object-oriented programming.
True
Fill in the blank: The _____ is a type of loop that executes at least once before checking the condition.
do-while loop
What is a user interface (UI)?
The means by which a user interacts with a computer or software.
Multiple Choice: Which of the following is a type of database? A) Relational B) NoSQL C) Graph D) All of the above
D) All of the above
What does ‘refactoring’ mean?
The process of restructuring existing computer code without changing its external behavior.
True or False: A primary key is a unique identifier for a record in a database table.
True
Fill in the blank: The _____ is a data structure that organizes data in a hierarchical manner.
tree
What is a software library?
A collection of pre-written code that developers can use to optimize tasks.
Multiple Choice: Which of the following is an example of a high-level programming language? A) Assembly B) C C) Python D) Machine code
C) Python
What is a constructor in programming?
A special method used to initialize objects.
True or False: A ‘null’ value indicates the absence of a value or object.
True