Unit 1 Key Words Flashcards
Indentation
A style that helps to show the codes structure.
Pseudocode
An informal English-like outline of an algorithm which can be converted to the programming language.
Programming Paradigms
Standard guidelines and conventions (most people) used to develop and build computer codes and solve problems.
Identifier
A value stored in the computers RAM. It is a way of accessing data for the programmer.
Constants
Type of identifier that represents a value that will not change while a program is running.
Variables
Type of identifier that represents a value that may change.
Local Variables
Used within a block of code in which they are declared.
Global Variables
Can be used anywhere in the program code.
Operators (including mathematical, relational, boolean)
Special symbols which tell the program to perform specific tasks on it’s data. It has to be used in a specific order.
Mathmatical: Add, Subtract, Multiply and divide.
Relational: Defining relationship between two different values.
Boolean: Combines expressions together.
Built In Functions
Functions that can be used to solve complex problems.
An example are formatting it’s appearance. Can also download from third party websites.
Arithmetic Functions
Perform mathematical operations.
String Handling Functions
Helps to perform IT Operations on strings.
General Functions
Allows to input data and output messaegs.
Validation
A process that checks to see if an input value makes sense before it is processed.
Run Time Error
A problem that occurs when an application is being used. This results in the application locking/crashing.