Unit 1: Lesson 1: Intro to Algorithms

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/7

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

8 Terms

1

Algorithms

A step-by-step process for completing a task; written or diagrammed instructions essential to problem-solving in programming.

2

Sequencing

The specific order in which algorithm steps are executed, ensuring logical program flow.

3

IDE (Integrated Development Environment)

Software that lets programmers write, compile, and run code in one place.

4

Compiler

A tool that checks source code for certain errors and translates it into machine-readable form before execution.

5

Syntax Error

An error that breaks the grammar rules of a programming language; must be fixed before the program can run.

6

Logic Error

An error that lets the program run but produces incorrect or unexpected results. These errors are not detected by the compiler.

7

Run-time Error

An error that occurs while the program is executing, often causing abnormal termination.

8

Exception

A type of run-time error that occurs as a result of an unexpected error that was not detected by the compiler. It interrupts the normal flow of the program's execution.