Unit 4 terms Flashcards
Procedural Programming
Each line of code is executed one after the other, from start to finish until the program reaches the end
Object Oriented Programming
a programming paradigm that structures software design around objects, rather than functions or logic. It helps meet very particular client needs
Functions
A small piece of code that will do a specific job. It is independent from the rest of the program.
Array
A collection of data types, much like a string. An array is like the bucket metaphor. It can be made from any data type
2D array
Normal arrays that are organised in rows and columns
Records
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.
Stack
Imagine a Stack of plates. They are organised in order, one after the other.