This data type is used to store whole numbers in most programming languages
What is an integer?
A keyword that is used to execute a block of code only if a certain condition is true
What is "if"?
It is a keyword used to define a function in python.
What is "def"?
It is the full form of OOP.
What is object-Oriented Programming?
It is the simplest search algorithm that checks every element until a match is found.
What is linear search?
This data type is used for storing a sequence of characters
What is a String?
A keyword that is used to repeat a block of code for a specific number of iterations
What is "for"?
It is a term for a function that does not return a value.
What is a void function?
A term for a blueprint from which individual objects are created.
What is a class?
What is bubble sort?
This data type can only have two possible values, typically representing true and false
What is a boolean?
A control flow structure that is used to execute a block of code as Long as a condition is true
What is a "while" loop?
They are the variables listed in a function's definition.
What are parameters?
It is the process called when an object takes on properties or methods of another class.
What is inheritance?
An algorithm used to find the shortest path between nodes in a graph
What is Dijkstra's algorithm?
What is an array?
What is "break"?
It is the concept of passing a function as an argument to another function.
What is a higher-order function?
It is called when different objects are accessed through the same interface, often seen as a form of method overriding.
What is polymorphism?
It is the algorithm used to sort data by dividing it into smaller subarrays based on a pivot value.
What is quicksort?
It is the difference between a process and a thread
What is the lightweight unit of execution within a program that is called a process in execution
It is the difference between stack and queue.
What are linear data structures that follow Last-In-First-Out (LIFA) and First-In-First-Out (FIFO)?
It is the purpose of the hash function in data structures.
What function is used in data structures to create a unique identifier for each element?
It is the concept of memorization in dynamic programming.
What is the concept in dynamic programming that involves storing the results of subproblems to avoid recomputing them?
The time complexity of the merge sort algorithm.
What is O(n log n)?