Pregunta 1
Pregunta
An Array is a data structure, a specialised way of storing data
Pregunta 2
Pregunta
How would you define an array in pseudo code?
Respuesta
-
SET name = [Bob, Dave, Sam]
-
SET name TO [Bob, Dave, Sam]
-
SET name TO ["Bob", "Dave", "Sam"]
Pregunta 3
Pregunta
What will be outputted as a result of the below code?
SET info TO [123,445,667,45,776,2,4]
SEND info[5] TO DISPLAY
Pregunta 4
Pregunta
what best describes the below code?
SET info TO [[“Name”, “Score 1” , “Score 2”],[“Bob”, “Score 1” , “Score 2”],[“Name”, “Score 1” , “Score 2”]]
Respuesta
-
An Array
-
A data structure
-
A two dimensional array
-
one dimensional array
Pregunta 5
Pregunta
A sub program is a self contained sequence of program instructions that performs a specific task
Pregunta 6
Pregunta
From the list below identify why a programmer would use a subprogram?
Pregunta 7
Pregunta
What type of subprogram results a value?
Pregunta 8
Pregunta
What line number is the function called on?
Pregunta 9
Pregunta
What line number is a Subprogram defined on ?
Pregunta 10
Pregunta
A _____ Variable is defined within a subprogram and can only be used within that subprogram?.