Paper 2 - section 6 - design, testing and IDEs Flashcards
what are the differences between high-level languages and low-level languages?
- one instruction of high-level code represents many instructions of machine code, whereas one instruction of assembly code usually only represents one instruction of machine code
- high-level code will work for many different machines and processors, whereas low-level code is usually written for one type of machine or processor and won’t work on any others
- in a low-level language the programmer needs to know about the internal structure of the CPU and how it manages the memory, whereas in a high-level language you can easily store data in many different structures without fully understanding them
- high level code is easy to read, understand and modify, whereas low-level code is very difficult to read, understand and modify
- high-level code must be translated into machine code before a computer is able to understand it, whereas commands in machine code can be executed directly without the need for a translator
- in high level languages you don’t have much control over what the CPU actually does so programs will be less memory efficient and slower, whereas in low-level languages you control exactly what the CPU does and how it uses memory so programs will be more memory-efficient and faster
are high or low level languages easier for the computer to run?
low-level languages
are high or low level languages easier for humans to write?
high-level languages
give two examples of low-level languages
machine code and assembly languages
give three examples of high-level languages
python, C++ and Java
why are translators needed?
computers only understand instructions given to them as machine code, so high level languages and assembly languages need to be translated before a computer is able to execute the instructions
what are the three types of translator?
assemblers, compilers and interpreters
what are assemblers used for?
assemblers are used to turn assembly language into machine code. There are many different assembly languages (to support different CPU types) and each one needs its own unique assembler
what are compilers and interpreters used for?
to turn high-level code into machine code
what are the key features of compilers?
- translates all of the source code at the same time and creates one executable file
- only needed once to create the executable file
- returns a list of errors for the entire program once compiling is complete
- once compiled the program runs quickly, but compiling can take a long time
what are the key features of interpreters?
- translate and run the source code one instruction at a time, but doesn’t create an executable file
- needed every time you want to run the program
- the interpreter will return the first error it finds and then stop - this is useful for debugging
- programs will run more slowly because the code is being translated as the program is running
which type of translator produces one executable file?
compiler
what does the type of translator used depend on?
which programming language and IDE you’re using
what happens if a program is stored over multiple source code files?
a linker is used to join all of the separate compiled codes into one executable program
what is an integrated development environment?
a piece of software that provides features to help a programmer develop their program
what is the code editor?
the main part of an IDE, it’s where the code is written.
what are some common features of a code editor?
Most code editors will have line numbering and auto-colour coding for things like strings, functions, variables and comments. Good code editors will also have other automatic features like auto-correct, auto-indentation and auto-complete
what are 10 common features of an IDE?
- the code editor
- a run-time environment
- an explorer window
- an output window
- features to keep track of the line number and character number that you’re working on
- error diagnostics and debugging tools
- breakpoints
- a translator
- auto-documentation
- a graphical user interface (GUI) builder
what does a run-time environment do?
it allows the code to be run quickly within the IDE - this is done using a start or run button. The run-time environment can also help to identify logic errors in the program as the programmer can see which part of the code is running when errors occur
what is the point of an explorer window?
it helps you navigate through programs
what is the output window for?
it’s to show the output from a program when it is run
what do error diagnostic and debugging tools do?
they help to find and fix errors in a program - they’ll tell you the location of the error and often suggest ways to fix it
what are breakpoints?
a common debugging tool: they stop the program on certain lines so you can gather information like the value of variables as the program is running
what does auto-documentation help with?
the maintenance of programs. It can extract certain features of a program, like the names of variables, names of sub-programs and comments. This information is stored in a separate document to give a summary of what the code does
what does a GUI builder help the programmer to do?
design a user interface by building it up graphically rather than having to design it using source code. It allows you to drag and drop different objects and customise them, so you can make the interface look exactly how you want it to
what are 2 types of errors?
syntax errors and logic errors
what are syntax errors?
when the compiler or interpreter doesn’t understand something you’ve typed because it doesn’t follow the rules of the programming language - an error that prevents the program from running
what are logic errors?
when the compiler or interpreter is able to run the program, but the program does something unexpected
which type of error is hardest to identify and fix, and why?
logic errors are more difficult to identify, as compilers and interpreters won’t pick them up
how are syntax errors often found?
compilers and interpreters are unable to turn the source code into machine code, and so a syntax error (with its location) will be returned
how are logic errors usually found?
through general use of the program and by systematically testing it using a test plan
what is functionality testing useful for - what is its main aim?
functionality testing is an essential part of the development process and a good way to spot logic errors. The main aim of this testing is to see if the program actually meets your initial requirements
should functionality testing be left to the end of the program? why?
functionality testing shouldn’t be left until the end of the process - it’s so much better to spot errors and fix them as early as possible during development of the program
what do performance tests do?
test how quickly certain features run and their impact on computer resources
what do usability tests do?
test how user-friendly the interface and features are
what do security tests do?
test vulnerability to attacks and how securely data is stored
what do load/stress tests do?
test how the program copes under extreme conditions, e.g. lots of users at the same time
which errors are usually easy to fix? why?
syntax errors are usually easy to fix as the compiler should point you to the exact line that contains the error
what are the 5 steps you should follow when developing a piece of software?
- requirements - what does the customer want the program to do?
- design - how will the program meet the requirements?
- implementation - writing the program to the specified design
- testing - does the program meet the requirements?
- maintenance - program output but continued updates needed
what happens in final testing?
the program only goes through the development cycle once. All the required features of the program are added at the same time. The program is tested against the initial requirements of the customer - if it meets them then the program is signed-off. The customer will get what they asked for but it won’t necessarily be what they really want
what happens in iterative testing?
the program will go through the development cycle a few times. The idea is to try and get the program to match what the customer really wants. The requirements in the first cycle might only include the main features of the program. At the start of each new cycle the requirements will be adjusted (e.g. by adding new details and features)
what should be made before implementation (writing the program)?
a test plan
what will a test plan cover?
it will outline exactly what you’re going to test and how you’re going to test it. It should cover all the possible paths through a program and anticipate potential issues. A good test plan will select appropriate test data to test for these issues
what are the three categories of test data that you should use?
- normal data
- extreme (boundary) data
- erroneous data
what is normal data?
things that a user is likely to input into the program
what is extreme (boundary) data?
values at the limit of what the program should accept
what is erroneous data?
inputs that the program should not accept
what does a binary search look for?
items in an ordered list
what do you do to find the middle item in a list of n items?
(n+1) / 2, and round up if necessary
what does in mean if a program is functioning correctly?
they should never break and never produce errors
is it easy to get a program to function correctly?
no - even the biggest software companies need to update and patch their programs regularly
what are three things that programmers will try to do when protecting their code through defensive design?
- anticipate how users might misuse their program, then attempt to prevent it from happening
- ensure their code is well-maintained
- reduce the number of errors in the code through testing
what is the easiest way for a user to misuse a program (accidentally or intentionally)?
when entering data
what are the two ways to prevent users from entering something you don’t want them to?
input sanitisation and input validation
what is input sanitisation?
removing any unwanted characters before passing data through the program
what is input validation?
checking if data meets a certain criteria before passing it into the program. E.g. checking that an email address contains an @ symbol and has a suitable ending (.com, .co.uk, etc)
what are 6 types of input validation checks you can use?
- range check
- presence check
- check digit
- format check
- look-up table
- length check
what does a range check do?
checks the data is within a specified range
what does a presence check do?
checks the data has actually been entered
what do check digits do?
checks numerical data has been entered correctly
what do format checks do?
check the data has the correct format
what do look-up tables do?
check the data against a table of acceptable values
what does a length check do?
checks the data is the correct length
what can authentication do?
help protect your programs - it can confirm the identity of a user before they’re allowed to access certain pieces of data or features of the program
what is a common way of authenticating a user?
using passwords
what are 3 common ways to increase the security of a password-based authentication system?
- force users to use strong passwords and get them to change their passwords regularly
- limit the number of failed authentication attempts before access to an account is lost
- ask for a random selection of characters from the password on each authentication
what are 3 common ways to increase the security of a password-based authentication system?
- force users to use strong passwords and get them to change their passwords regularly
- limit the number of failed authentication attempts before access to an account is lost
- ask for a random selection of characters from the password on each authentication
what is the potential problem of authentication?
too much authentication can affect a program’s functionality and put people off using it - it’s important that programmers get the level of authentication correct
why should programmers make sure that a program is well-maintained as part of the defensive design?
because a well-maintained program makes it easy for other programmers to understand what the code does. They should be able to change parts of the source code without the risk of causing problems elsewhere in the code.
describe 4 features than can improve the maintainability of source code
- comments are useful for explaining what the key features of a program do - well written and clear comments are fundamental for helping other programmers understand your programs
- indentation can be used to separate different statements in a program. This allows other programmers to see the flow of the program more clearly and pick out the different features
- variables and sub-programs should be named so that they refer to what they actually are. This helps programmers to keep track and recognise what the variables are all the way through your program
- only use global variables when necessary as they could affect the rest of your code. Variables with local scope will only affect the sub programs that they’re declared in - other programmers will know that changing these variables won’t affect other parts of the program
how are comments usually marked?
with // or #
what is a risk of using too many comments?
too many comments can leave your programs looking cluttered and unreadable
what is it very easy to do it a good amount of useful comments are put into the source code?
produce a summary of what the program code actually does using auto-documentation
what are functions?
sets of instructions stored under one name that always return a value. When you want your program to do the whole set of instructions you only need to call the name of the function
when are functions useful?
when you have sets of instructions that you need to repeat in different places within a program. They give your program more structure and readability whilst cutting down on the amount of code you actually need to write
true or false: you need to write all procedures/functions yourself
false - high-level programming languages have common procedures and function built into them.
what are paramenters?
special variables used to pass values into a sub program. For each parameter you can specify a name, a data type and a default value
what are arguments?
the actual values that the parameters take when the sub program is called
do functions always take a parameter? do they ever return a value?
functions take at least one parameter and they must return a value
what should you do when you call a function?
you should assign it to a variable or use it in a statement otherwise the value that it returns will not be stored anywhere and will be lost
what is abstraction?
picking out the important bits of information from the problem, ignoring all the specific details that don’t matter
what can structured query language (SQL) be used for?
to search tables (usually in a database) for specific data
what are the records of a database?
the rows
what are the fields of a database?
the columns
what is the SELECT keyword followed by in SQL?
the names of the fields (columns) you want to retrieve and display
what is the FROM keyword followed by in SQL?
the name of the table/s you want to search
what does * mean in SQL?
return all fields
what is the WHERE statement used for in SQL?
it’s used to specify conditions that a record must satisfy before it is returned
which boolean operators can be used in SQL? when can they be used?
the boolean operators AND and OR can e used with WHERE to make more specific searches
what can the LIKE statement be used for in SQL?
it can be used with WHERE to search for a pattern. In LIKE statements, the % character is used as a wildcard to represent any combination of letters and numbers
write an SQL statement to select the name (hotel_name) and price (price) of all the hotels ending in “hotel” from a table called “hotels”
SELECT hotel_name, price FROM hotels WHERE hotel_name LIKE “%hotel”
what does defensive design do?
programmers try to protect their algorithms through defensive design - it helps to ensure programs function properly