Unit 8 - Logic✔️ Flashcards
define data validation?
is an automatic check to ensure that data entered is sensible and feasible however it can not ensure data is accurate but only check the data entered is reasonable
why is data validation important when programming?
stops unexpected or abnormal data from crashing your program
define what a range check does?
Checks the data falls between an acceptable upper and lower value, within a set range
define what a type check does?
Checks that the data entered is of an expected type, e.g. text or a number
define what a length check does?
Checks the number of characters meets expectations, e.g. an 8 character password
define what a presence check does?
Checks that the user has at least inputted something, stopping them from accidentally entering nothing
define what a format check is?
An extra digit added to a number which is calculated from the other digits, this ensures the rest of the number has been entered properly
define data verification?
is used to double-check that the data has been typed in correctly eg a user setting a new password may be asked to enter it twice
what are authentication routine used for?
used to make sure a person is who they claim to be eg being asked to enter a User ID
why do programs need to be maintained?
-improve the code
-fix bugs and add new features
how can programs be written so that they can be easily maintained?
-commenting
-indentation
-use of sub programs (functions and procedures)
-using appropriate naming conventions
what is the point of indentatin?
makes it possible to easily see which lines of the code are part of different structures
what is the point of commenting in your code?
-helps other programmers to understand your code
-helps with difficult to understand parts
-at the start of functions to explain what it does
what should naming conventions be?
it is important to use meaningful names for variable ,functions and procedure so they are easy to understand
Example of high-level programming language?
Python, Visual Basic, C#, Java, C++
Example of Markup languages?
HTML, XML
Example of a Low-level Programming languages?
Assembly language
Example of query language?
SQL
What is machine code?
In first computers,all programs were written in machine code - instructions were written in binary (101011001001) - each instruction did one very small task but writting programs was difficult and time -consuming
Features of assembly language?
• Assembly language is processor-specific
• It has to be translated into machine code before it can be executed
• As each instruction corresponds directly to a machine code instruction, it is known as a low-level language
What are high-level languages?
•High-level languages generally have statements that look a bit like English or Maths
• This makes these languages easier to learn and understand easy to learn
and understand
Features of high-level languages?
• High-level languages also have data structures such as arrays and records
• Many high-level languages have been especially designed to make it as easy as possible to write programs to solve certain types of problem
• The translation is done by a program which may be either a compiler or an interpreter
What is assembly language (low-level language)?
•Assembly language allows a programmer to create programs more easily then writing in machine code
• Each assembly language instruction maps directly to machine code
How is the source code translated into machine code?
• A compiler or interpreter is used to translate the source code (written by the programmer) into object code (machine code) for that processor
Advantages of high-level languages?
• A high-level language is easier to learn
• Programs can be written faster in a high-level language
• It is easier to understand and debug a high-level language
Advantages of low level languages?
• A program written in a low-level language can run very quickly
• The code will usually require less RAM
• Statements in a low-level language can be used to control and manipulate specific hardware components
As a results this language is often used for programs such as device drivers
Features of a interpreter?
• Unlike a compiler, no object code is produced
• It translates each line of code and executes it immediately
• If it reaches a line with a syntax error, it stops and displays an error message
Features of a compiler?
•compiler translates a high-level language into object code(machine code)
• The code written by the programmer is called the source code
• The code produced by the compiler is called the object code
• The object code can be saved a storage drive and run whenever required
Why are device drivers often written in low level language (assembly code)?
Because low-level language can run very quickly and the code will usually require less ram and statements in low-level language can be used to control and manipulate specific hardware components
Order of high and low level languages?
High level language (eg java)→ low level language (for example assembly language) → machine code → harware
Define what a syntax error is?
• A syntax error is one where the code written doesn’t conform to the rules of the language and the compiler doesnt know how to translate the profram into machine code - the program can not be run until all the syntax error are fixed
What are logical errors?
• The program will run, but it won’t work as the programmer intended
What will a test plan normaly test for? And why?
• Normal data
• Boundary data
• Invalid data
• Erroneous data
It is important that programs are fully tested to find logical errors
What are trace tables?
A trace table is useful for tracing through a program in order to find a logic error
• The value of each variable is recorded as it change
3 uses of trace tables?
• Determining the purpose of an algorithm
• Finding the output of an algorithm
• Finding errors in an algorithm
Define iterative testing?
tests modules and parts of a program as the program is developed - the programmer will usually test the code with knowledge of how it works
Define final testing?
• Final testing (also known as terminal testing) tests the whole program at the end of production - the end user wont necessarily know how it works
3 examples of a syntax error?
print(“hello)
14 = age
remainder = 10 MD 3
Name four types of test data?
Normal, boundary, invalid, erroneous
What is a truth table?
Truth table shows the output from all possible combinations of inputs from a boolean expression (eg AND,OR and NOT)
What does the AND logic gate do?
Both inputs must be true for outputs to be true (eg if inputs are 0 , 0 ouput is 0 but if inputs are 1, 0 ouput is 1) - if both inputs are 1 than the ouput is 1 otherwise the ouput is 0
What does the OR logic gate do?
At least one input must be true for output to be true (eg if inputs are 1 , 0 output will be 1 but if input is 0 , 0 ouput is 0) - if either input is 1 then the output is 1
What does the NOT logic gate do?
The output is opposite to the input (if the input is 1 the output is 0)
What are IDEs?
Intergrated development enviorments - They have a number of tools and features that help programmers when they are programming
example of some common IDEs?
-Visual studio
-IDLE
What are 4 common features of IDEs?
-line numbers
-breakpoints
-code folding
-variable watching
Why are line numbers useful?
• Line numbers allow a programmer to clearly see each new line of code
• When errors are found, the line number that they occur on will also be stat
• parts of the code that do not need to be seen can be folded
Why is syntax highlighting useful?
• Syntax highlighting is where the colour of the text changes to show different parts of the program
• important keywords,strings and variables are diffrent colours - makes it easier for the programmer to identify them
What is error dignostics and how is it helpful?
• Error diagnostics help a programmer to find where they have made a mistake
• Error are identified along with the line number they occur on
• code may also be underlined or highlighted to show the error
What is the use of the run-time enviorment?
The run-time environment allows a programmer to test their program while it is running - if the program crashes the run-time enviorment can see what happened and give useful information to the programmer
What are error diagnostics?
Comments from the IDE that help in finding the cause of syntax errors
Why are breakpoints set by programmers?
Set so that the IDE stops the program mid-way through running