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