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