Algorithms, design & provlem solving (paper 2) Flashcards
what is the program development life cycle
analysis
design
coding
testing
define decomposition
breaking down a complex problem into smaller, manageable parts which are easier to solve
what are the steps of decomposition
- identify main problem
- identify the componenet parts of inputs, processes, outputs and storage
- list the main sub-problems, sub-systems or sub-tasks
- break these down into smaller sub-problems and sub-tasks which can be completed
what is a structure diagram used for
to show the structure of a problem, its subsections and links to other subsections
what is abstraction
simplifing a porblem so it is easier to be deal with
what are flowcharts used for
to develop solutions to a problem
what is the problem with using flowcharts
they di not usually translate very easily into program code
why do programmers use pseudocode
because it is easier for someone to understand - they can focus on the process needed rather than the coding itself
what is the assingment operator for pseudocode
an arrow
<-
what is this <
less than
what is this >
greater than
what is this <>
not equal to
what are the data types
- integer
- real
- boolean
- char
- string
what is an integer
a whole number
what is a real
a number with a decimal point
what is a boolean
true or false
what is a char
a single alphabetic or numeric character
what is a string
a sequence of one or more characters
what is the difference between a variable and constant
a variable can be changed/updated/edited after exercution but a constant stores a value that cannot be changed after exercution
what are the 3 types of code
- sequence (inputs, outputs, assignment)
- iteration (loops)
- selection (conditions)
what is stepwise refinement
when the code happens in order of it being written
in pseudocode if statements what do you particually need
IF …
THEN
ELSE IF
THEN
ELSE
END IF
what are the three iteration statements
- for … next
- while … endwhile
- repeat … until
when are case statements used
if there are several possible options ot be tested
how are case statements written
CASE OF ….
1 : …
2 : …
OTHERWISE
ENDCASE
what is MOD
the remainder of
what is DIV
quotient (normal division)
what is sequence
two or more statements written and executed one after the other
what are the string operations
LENGTH()
LCASE()
UCASE()
SUBSTRING()
how do you write a min algorithm from an array list
ages <- [99, 15, 25, 55, 61]
min <~ 100
FOR index <- 1 TO 5
IF ages[index] < min
THEN
min <- age[index]
ENDIF
NEXT index
OUTPUT “The lowest age is “, min
how do you write a max algorithm from an array list
ages -> [99, 15, 25, 55, 61]
max -> 0
FOR index -> 1 TO 5
IF ages[index] > max
THEN
max -> age[index]
ENDIF
NEXT index
OUTPUT “The highest age is “, max
what is the RLE algorithm
RLE uses frequency/data pairs to encode each run length of the same coloured pixle
what is involved in the analysis stage of the program development life cycle
- abstraction
- decomposition of the problem
- identification of the problem and requirments
what is involved in the design stage of the program development life cycle
- decomposition
- structure diagrams
- flowcharts
- psuedocode
what is involved in the coding stage of the program development life cycle
- writing program code
- iterative testing
what is involved in the testing stage of the program development life cycle
- testing program code with the use of test data (abnormal, normal, boundary, extreme)
what is this flow chart symbol for, give and example
a decision - IS number <= EndNumber
what is this flow chart symbol for, give and example
input or output - INPUT EndNumber
what is this flow chart symbol for, give and example
a process - Number <- StartNumber
what is this flow chart symbol for, give and example
start or terminator - START, STOP, END
what is this flow chart symbol for, give and example
a subroutine - name of a different routine / flow chart
what happens in a linear search
each item to be searched from will be checked one by one in the list until the item is found or an error is outputted
what are the two types of search routines
- linear
- bubble
what is the code for a linear search routine
// perform a linear search of an array
DECLARE AList : ARRAY[1:10] OF INTEGER
AList <- [14, 2, 3 ,11, 1, 9, 5, 8, 10, 6]
OUTPUT “List to be searched:”, AList
Found <- FALSE
Index <- 1
INPUT SearchItem
WHILE Found = FALSE AND Index <= LENGTH(AList) DO
IF AList[Index] = SearchItem
THEN
Found <- TRUE
ELSE
Index <- Index + 1
ENDIF
ENDWHILE
IF Found = TRUE
THEN
OUTPUT SearchItem, “in position”, Index, “of the list”
ELSE
OUTPUT “Item not found”
ENDIF
what happens in a bubble sort
it repeatedly goes through the list to be sorted, swapping adjacent elements if they are in the wrong order
what is the code for a bubble search
//bubble sort with flag set when no swaps are made
AList <-[17, 3, 7, 15, 12, 23, 20]
// get number of items in the array
NumItems <- LENGTH(AList)
Comparisions <- NumItems - 1
SwapMade <- TRUE
WHILE Comparisons > 0 AND SwapMade = TRUE
SwapMade <- FALSE
FOR i <- 1 TO Comparisons
IF AList[i] > AList[i + 1]
THEN
Temp <- AList[i]
AList[i] <- AList[i + 1]
AList[i + 1] <- Temp
SwapMade <- TRUE
ENDIF
NEXT i
Comparisons <- Comparisons - 1
ENDWHILE
OUTPUT “Sorted list: “, AList
what are data validation checks used for
to check the validility of data entered by the user
what are the different types of validation checks
- range check
- length check
- type check
- presence check
- format check
- check digit check
what is the purpose of a range check
data must lie within a given range
what is the purpose of a length check
a strung input must be greater than or equal to a minimum length
what is the purpose of a type check
data must be of the correct data type (interger, boolean)
what is the purpose of a format check
eg a postcode must conform to one of a number of set formats
what is a check digit check
an addition digit at the end of a porduct code designed to check that valid product code has been entered
what is a doubt-entry verification check
when the two data entries are entered they are compared and if they match then the entery is accepted
what are normal test data
using examples of typical data that the program is designed to handle
what are extreme test data
the largest and smallest acceptable values
what are boundary test data
inclueds both ends of the allowed data range eg for 1-100, 101 or 0
what is abnormal test data
data of the wrong type
what is a trace table used for
to document how the values of variables change during a dry-run of an algorithm
what are the three different types of error
- syntax error
- logic error
- runtime error
what is a syntax error
something that prevents your program from running caused by a mistake in the spelling or ‘grammer’ of the code
what is a logic error
when an unexpected output is given like the wrong symbol for greater than / less than - the program works but not as the programmer expected it to
what is a runtime error
an error which is detected while the program is running, like data is not entered in time or wrong data entered