1/18
These flashcards cover key vocabulary and essential concepts related to computational thinking and programming as discussed in the lecture notes.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Computational Thinking
A problem-solving process that involves four key components: decomposition, pattern recognition, abstraction, and algorithms.
Decomposition
The process of breaking down a complex problem into smaller, more manageable parts.
Abstraction
The process of removing unnecessary details to focus on essential characteristics.
Algorithm
A step-by-step procedure for solving a problem or performing a task.
Flowchart
A visual representation of a process or algorithm, using standardized symbols to depict different types of actions.
Variable
A named storage location in programming that can hold a value, which may change during the execution of a program.
Constant
A fixed value that cannot be altered by the program during normal execution.
Operator
A symbol that indicates an operation performed on one or more operands; common types include arithmetic, relational, and logical operators.
Sequential Search
An algorithm that checks each element in a list sequentially until the desired element is found.
Binary Search
An efficient search algorithm that finds the position of a target value within a sorted array by repeatedly dividing the search interval in half.
Selection Sort
A simple sorting algorithm that divides the input list into a sorted and an unsorted sublist, repeatedly selecting the smallest (or largest) element from the unsorted sublist to add to the sorted sublist.
Bubble Sort
A sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.
Collection
A data structure that can hold multiple elements, typically allowing for operations like adding, removing, and iterating through the elements.
Pseudocode
A notational system used to outline an algorithm in a way that resembles programming languages but is designed to be easily understood by humans.
Compiler
A program that translates code written in a high-level programming language into machine code, enabling the program to be executed by the computer.
Interpreter
A program that translates high-level code into machine code line by line, executing each line as it is converted.
Precondition
A condition that must be true before a particular block of code is executed.
Postcondition
A condition that must be true after a block of code has executed.
Trace Table
A table used to track the values of variables as a program executes, helping to understand how the program flows and operates.