Multiple Choice - Programming

Is this your test? Login to manage it. If not, you can generate an assessment just like it.

This is a non-interactive preview of the quiz content.

1.
1 point
The construct typically used to manipulate an array is
2.
1 point
Which of the following is a HIGH level language?
3.
1 point
vat := 0.15

is an example of an .................. statement
4.
1 point
VAr
amount : real;
name : string;
age : integer;
gender : char;

Which variable above represents a decimal number?
5.
1 point
Which of the following is not an example of a datatype in Pascal
6.
1 point
Which of the following DO NOT represent a looping statement?
7.
1 point
The code needed in pascal to output the value of price is
8.
1 point
ADD 4,5
SUB 10, 16

The above is an example of
9.
1 point
............................ are a way of representing an algorithm graphically
10.
1 point
Which of the following conditions is true?
11.
1 point
I want to create an array to store a list of ten names in a class. Which word represents the error in the code below?

CLASS : array[1..10] of char;
12.
1 point
A program code reads
b = 0
input a
if a < 10 then
b = a * a
else
b = a + 2
output b

What is output when a = 5?
13.
1 point
An error that occurs because of a mistake with the use of the language is called
14.
1 point
................... refers to the fixing of errors in a program
15.
1 point
A ................ is a location in memory which remains the same during the running of a program