Unit 4 terms Flashcards

1
Q

Procedural Programming

A

Each line of code is executed one after the other, from start to finish until the program reaches the end

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Object Oriented Programming

A

a programming paradigm that structures software design around objects, rather than functions or logic. It helps meet very particular client needs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Functions

A

A small piece of code that will do a specific job. It is independent from the rest of the program.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Array

A

A collection of data types, much like a string. An array is like the bucket metaphor. It can be made from any data type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

2D array

A

Normal arrays that are organised in rows and columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Records

A

A data type that can store more than one data type. It is similar to 2D arrays and can contain more dimensions. It can store data such as string, Integer, Float.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Stack

A

Imagine a Stack of plates. They are organised in order, one after the other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly