Programming Flashcards
What is a variable?
A named space in memory large enough to store a single data type
What is a constant?
A named space in memory with a value that never changes while the program is running
What are the 5 data types?
Boolean
Character (not in python)
Integer
Real
String
What is declaration?
Code that causes a variable to exist
What is assignment?
The process of putting a value into a variable
What is the difference between definite and indefinite iteration?
Indefinite iteration is iteration using while loops and so carries on idefinitely till the conditional statement
Definite iteration is iteration using for loops and so is used a set number of times initially specified
What are operations? What are the 3 types?
Operations are an action performed on one or more pieces of data in order to produce additional data
Arithmetic (+, -, *, /)
Relational (<, >, ==, !=)
Logical (and, or, not)
What are the two types of data structures and their differences?
One-dimensional arrays store same data types with each element referenced by an index number
Two-dimensional arrays store same data types in a grid referenced by row then column
What is a record?
A data structure that can accept multiple data items of different types. A row in a database
What is an input and output?
Input is the process of introducing data to a system
Output is the process of communicating data beyond the system
What is a file?
A store of data that continues to exist when the program or computer is no longer running
What are the 6 string handling operations?
Concactenation
Length
Index
Substring
Convert
Conversion
What does ord() and chr() do?
Ord() converts a character to ASCII
Char() converts an ASCII code to a character
What is a subroutine?
A small subsection of the whole program that performs a specific task.
What are the benefits of a subroutine?
Each subroutine can be give to a different programmer inviting teamwork
Subroutines can be separately tested without waiting for the whole program to finish
Subroutines that are commonly used can be reused
What is a parameter and calling?
A piece of data that is passed into a subroutine in order for the subroutine to do its job.
Calling is a process where an instruction tells another named part of the code to run
What is the return command in a function?
A command in which a subroutine passes a piece of data back to the line of code from which it was called
What is modularisation?
The process of breaking a program into smaller parts called modules
What is a robust program?
A robust program continues to function even when confronted with unexpected events, such as a lost network connection or user inputting data the wrong data type
What is secure programming?
A secure program prevents users from accessing or altering data that they should not access or alter. Usernames and passwords make up one approach for keeping a program secure
What is a validation algorithm?
Ensuring that data entered into the computer is reasonable and sensible.
What is a range check?
Ensuring that data entered is within a specific numerical value range
What is a type check?
Ensures that the correct data type has been entered
What is a length check?
Ensures that a string contains a valid number of characters
What is a lookup check?
Checks that what the user has entered exists on a list
What is a presence check?
Simply checks that the user has entered something
What is authentication?
The software process ensuring that the person accessing a system is the person who is supposed to access that system
What is normal test data?
Data that is valid and that represents how the program would be used
What is boundary test data?
Data that is just barely valid to check that the extreme ranges of normal input work correctly. Sometimes its good practice to test data that is just outside the acceptable range
What is erroneous data?
Data that should not be accepted by the system. This is included to test to see whether a programs validation and error messages work correctly
What is a high level programming language?
High-level languages are more understandable so high-level languages are far more popular
What is a translator?
A program that translates source code into machine code
What are the 3 types of translators?
Assemblers translate assembly language
Interpreters translate high level code one line at a time
Compilers translate an entire high level program at once before executing
What are the advantages and disadvantages of an interpreter?
+ A program that contains errors can still be run till the error
+ Debugging is easier
- Every time it is run it needs to be interpreted
- Easier for unauthorised people to access source code
What are the advantages and disadvantages of a compiler?
+ A compiled code will run quicker than reinterpreted code
+ It is more difficult for unauthorised people to access
- More memory used in compilation
- Entire program needs to be error free before