2.2 Programming Fundamentals

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

1/21

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

Variable

A named container that stores a value in memory, which can change its value while the program is running.

2
New cards

Constant

A named container that stores a value in memory, which cannot change its value while the program is running.

3
New cards

Operators

Symbols used to perform operations on variables and values, such as +, -, *, /, MOD, DIV, ^, ==, !=,

4
New cards

Assignment

The process of assigning a value to a variable, e.g., favNum = 5.

5
New cards

Input

The method of receiving data from the user, e.g., favNum = input("Type in your number").

6
New cards

Output

The method of displaying data to the user, e.g., print("your favourite number is", favNum).

7
New cards

Integer

A whole number, such as 1, 5, or -259.

8
New cards

Real / Float

Numbers that can have a fractional part, such as 1.5 or -125.1.

9
New cards

Boolean

A data type that can be either TRUE or FALSE (1 or 0).

10
New cards

Sequence

A set of instructions executed in order, line by line.

11
New cards

Selection

Instructions that do not have to be executed in sequence, based on the results of an event or condition.

12
New cards

Iteration

The repetition of a block of statements within a program.

13
New cards

Count-controlled iteration

A type of iteration with a fixed number of repetitions, e.g., for i in range(5, 10, 3).

14
New cards

Nested count-controlled iteration

A loop within another loop, e.g., for i in range(5) followed by another for loop.

15
New cards

Condition-controlled iteration

An indefinite iteration that continues based on a condition, e.g., while(i < 10).

16
New cards

Character

A single alphanumeric symbol, such as 'a', 'c', or '1'.

17
New cards

String

One or more alphanumeric characters, e.g., "abcd", "123", "12/01", "ÂŁ3.50".

18
New cards

Casting

Changing how a variable’s data type is interpreted or a temporary conversion of data type.

19
New cards

Subroutines

A block of code executed whenever called, allowing code reuse and easier debugging.

20
New cards

Functions

A subroutine that returns a value.

21
New cards

Procedures

A subroutine that does not return a value.

22
New cards

Arrays

A collection of items stored at contiguous memory locations, e.g., favFoods = ["Chicken", "Fish and Chips"].