paper 2 - OCR reference language Flashcards
how do you declare a constant in the OCR reference language?
using the keyword const (e.g. const pi = 3.14
how can variables in the main program can be made global in OCR reference language?
with the keyword global (e.g. global userID = 123)
what would 13MOD5 give?
3
what would 17DIV5 give?
3
give a statement in OCR reference language that will print “Hello” 8 times.
for i=0 to 7
print (“Hello”)
next i
what does the ‘step 2’ command do in for loops in OCR reference language? Explain an example of it being used
it increases the counter (i) by 2 each time. E.g., the program:
for i=0 to 7 step 2
print (“Hello”)
next i
Will print “Hello” 4 times, because the step 2 command increases the counter (i) by 2 each time.
give an example of a DO…UNTIL loop in OCR reference language
do
answer = input(“New answer”)
until answer != “Correct”
which command will return the length of the string in OCR reference language?
stringname.length (e.g. the program
subject = “Computer Science”
print (subject.length)
would return 15)
how would you print a substring in OCR reference language?
stringname. subString (startingPosition, numberOfCharacters)
e. g. when subject = “Computer Science”, subject.substring(3,5) will return “puter” (remember it starts at the 0th character)
when subject = “Computer Science”, what would subject.left(4) return?
“Comp”
when subject = “Computer Science”, what would subject.right(3) return?
“nce”
how would you convert the variable Subject into upper case letters?
Subject.upper
how would you convert the variable Subject into lower case letters?
Subject.lower
in OCR reference language, what command is used to open a file to read from?
open(“filename.txt”)
In OCR reference language, which command would be used to return a line of text from the file myFile?
x = myFile.readLine()
what is the command endOfFile used for in OCR reference language?
it is used to determine the end of the file, for example, myFile.endOfFile will return true if the program has reached the end of the file
write a program to print out the contents of a file called sample.txt
myFile = open("sample.txt") while NOT myFile.endOfFile() print(myFile.readLine()) endwhile myFile.close()
what command is used to write to a file in OCR reference language?
writeLine e.g. myFile = open("sample.txt") myFile.writeLine("Hello World") myFile.close() would make "Hello World" the contents of sample.txt (any previous contents are overwritten)
how are arrays declared in OCR reference language?
with the keyword ‘array’. e.g. array people[5] would create an array called ‘people’ with 6 spaces (it is 0 based)
how do you declare a 2D array in OCR reference language?
array arrayName[no. of records, no. of fields]
e.g. array board [8,8]
board [0,0] = “rook”
how do you define a function in OCR reference language?
function functionName(parameter) e.g. function triple(number) creates a function called 'triple' that takes 'number' as an argument
how do you call a procedure in OCR reference language?
procedure procedureName(parameter) e.g. procedure greeting(name) would create a procedure called 'greeting' that takes the parameter 'name'
how would you cast the string “3” as an integer in OCR reference language?
int(“3”)
how would you cast the string “3.14” into a float in OCR reference language?
float(“3.14”)
how would you cast the integer 3 into a string in OCR reference language?
str(3)
using the OCR reference language, how would you create a random number between 1 and 6 inclusive?
number = random(1,6)