Fundamentals of programming Flashcards
Arrays
A data structure for storing a finite, ordered set of data of the same data type within a single identifier.
Boolean
A data type that can only store one of two possible values (1 or 0, TRUE or FALSE etc).
Character
A data type for storing a letter, number or special character.
Data type
An attribute of data that determines what sort of data is being stored that tells the compiler how it will be used in a program.
Date/Time
A data type for storing date or time values in an identifiable format.
Integer
A data type for storing whole number values (positive or negative) with no decimal parts.
Language-defined (built-in) data types
A primitive data type provided by a programming language.
Pointer/reference
A data type used as a store for memory addresses of objects created at runtime.
Real/Float
A data type for storing numbers with decimal or fractional parts.
Records
A data structure that stores related data items in elements called fields, organised based on attributes.
String
A data type for storing a sequence of alphanumeric characters or symbols, typically within quotation marks.
User-defined data types
Custom data types designed by the user by combining existing data types, for the bespoke needs of their program.
Assignment
A statement for giving a created variable a value that is consistent with its data type.
Constant declaration
A statement for creating a constant in a program.
Iteration
A programming structure where a set of statements are repeated a fixed number of times (definite iteration).
Nested iteration
A programming structure of placing iteration loops within other iteration loops.
Nested selection
A programming structure of placing selection statements within other selection structures.
Selection
A programming structure for deciding which statements to perform next based on a certain condition or set of conditions.
Subroutines (Procedures/functions)
A uniquely named section of code that is written to perform a specific task within a program that can be called by using its name in a programming statement.
Variable declaration
A statement for creating a variable in a program. The variable is defined with a name and sometimes a data type.
Addition
A arithmetic operator that returns the sum of two numeric values (integer or floats).
Arithmetic operator
An operator that takes two numeric values and performs some form of mathematical manipulation (adding, subtracting, multiplying, dividing) to return a numeric value.
Exponentiation
An arithmetic operator that raises a numeric value to the power of another numeric value and returns the result.
Integer division
An arithmetic operator that divides a numeric value (integer or float) by another but returns an integer quotient.
Modulo
An arithmetic operator that divides a numeric value (integer or float) by another and returns the remainder.
Multiplication
An arithmetic operator that returns the product of two numeric values (integers or floats).
Real/float division
An arithmetic operator that divides a numeric value (integer or float) by another and returns a real/float.
Rounding
An arithmetic operator that converts a real/float to a more approximate representation that reduces the number of digits to represent the number by rounding up or down to a given number of decimal places.
Subtraction
An arithmetic operator that returns the difference between two numeric values (integers or floats).
Truncation
An arithmetic operator that reduces the number of digits to represent a real/float by cutting off a number after a given number of decimal places.
Equal to
A relational operator that returns TRUE if an only if the two values in question are the same.
Greater than
A relational operator that returns TRUE if and only if the first value is larger than the second.
Greater than or equal to
A relational operator that returns TRUE if the first value is larger than the second, or if they are equal.
Less than
A relational operator that returns TRUE if and only if the first value is smaller than the second.
Less than or equal to
A relational operator that returns TRUE if the first value is smaller than the second, or if they are equal.
Not equal to
A relational operator that returns TRUE if and only if the two values in question are not the same.
Relational operators
An operator that compares two values and returns TRUE or FALSE.
AND operator
A boolean operator which returns TRUE (or 1) if an only if all inputs are TRUE (or 1).
Boolean operators
An operator that compares two boolean values and returns TRUE or FALSE (1 or 0).
NOT operator
A boolean operator which returns TRUE (or 1) if and only if the input is FALSE (or 0).
OR operator
A logical operator which returns TRUE (or 1) if an only if any one of the inputs are TRUE (or 1).
XOR operator
A logical operator which returns TRUE (or 1) if and only if exactly 1 of the inputs are TRUE (or 1).
Constants
A data item that, once declared, retains the same value for the entire duration of the program run.
Variables
A data item that, once declared, can be used as a short term memory container for a temporary value that may change over the duration of the program run.
Character code
A binary representation of a character using the rules of a character set (e.g. ASCII or unicode). Characters can be converted to and from character code.
Concatenation
A function used to merge two strings into a single, longer string.
Length
A function that returns the number of characters (including spaces) present in a given string.
Position
A function that returns the index used to locate and identify a given character in a string.
String conversion operations
Functions used to convert strings to and from other data types when possible; such as integers, floats and date-time.
Substring
A function used to slice a string to obtain the relevant substring embedded within the longer string.
Random number generation
The process of generating a random number to be used by a program generally by inputting a value known as the seed into an algorithm.
Exception handling
The process of dealing with exceptional events triggered by circumstances that are inconsistent with what the program was coded for. This is done by informing the user of the error that has occurred and how it can be rectified in the next run.
Functions
A subroutine that can be called to perform a task or operation and always returns a value. They can be called in an expression or be assigned to a variable.
Procedures
A subroutine that can be called by simply writing its name in the code. Procedures do not have to return values in a program.
Interface
Code used to describe the data type and characteristics of data being passed when a subroutine calls another subroutine.
Parameters
The identified data being passed into describing a subroutine. Parameters contain the arguments (data items) that will be used by the subroutine when it is called.
Local variables
A variable declared within a subroutine of a program, which only exists and can only be used within that subroutine.
Global variables
A variable declared in the main program which exists outside of any of the subroutines, but can be used anywhere in the program.
Stack frames
A collection of data related to a subroutine call that has not yet terminated with a return. Each frame is pushed onto a stack data structure.
Recursive technique
A subroutine that refers to itself in its definition.
Programming paradigms
A style of computation and programming, chosen according to the problem at hand.
Hierarchy charts
A visual representation of a system design by breaking the most important elements into smaller sub tasks which can be individually coded (a top-down structure).
Structured approach
A programming approach that relies on four basic structures to develop a program: assignment, sequence, selection and iteration.
Aggregation
The creation of an object consisting of further objects such that these further objects continue to exist even if the initial object is deleted.
Class diagrams
A visual representation of the relationships between classes and subclasses.
Classes
A template defining the attributes and methods that can be used to create a type of data known as an object.
Composition
The creation of an object consisting of further objects such that these further objects cease to exist if the initial object is deleted.
Encapsulation
A method of maintaining data integrity by only allowing class methods to access data in an object’s attributes.
Inheritance
The concept of subclasses inheriting the methods and attributes of its parent class (a.k.a its super class).
Instantiation
The creation of an object from a class.
Object oriented programming
A programming paradigm where the system is viewed as a set of objects, each with their own data (attributes) and procedures (methods), that can interact with each other. All processing is done by objects.
Objects
An instance of a class. The behaviour of this data item depends on how its attributes were defined.
Overriding
The redefinition of a method in a subclass, replacing the definition of the method with the same name in the parent class.
Polymorphism
Objects of different classes can use the same method to perform an action.