Fundamentals of Programming Concepts and Terminology

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/13

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.

14 Terms

1
New cards

Compiler

software that translates code written in a high level programming language into something the computer can read (machine language)

2
New cards

While-loop

loop that iterates over the code as long as the given condition remains true

3
New cards

For-loop

loop that iterates over code a specified number of times

4
New cards

C

coding language used in this class

5
New cards

If statement

conditional statement comprised of an 'if' clause, 0 or more 'else if' clauses, and an optional 'else' clause. It allows you to run lines of code when a certain condition is met.

6
New cards

Operating System

software that runs behind the scenes on a computer. It handles files, aesthetics, input/output, memory, and network connections

7
New cards

Memory

electronic components of a computer used to store data. This is very quick to access

8
New cards

Disk

storage device that holds memory even when the computer is off

9
New cards

CPU (Central Processing Unit)

hardware that sends signals to control other parts of the computer, like its brain

10
New cards

Algorithm

step by step instructions coded to solve a specific problem

11
New cards

Code

typed instructions that can be interpreted and run on a computer

12
New cards

Variable

a stored quantity in code that can be referenced or changed later within its active area (also called scope)

13
New cards

Integer

positive numbers, negative numbers, and 0

14
New cards

Float

decimals