Font size
WorksheetsH SDD - Pre-defined functions (revision)
Total questions: 9
Worksheet time: 5mins
Which of the following Python pre-defined functions could be used to return the ASCII value of a character?
ORD
LEN
CHR
ROUND
Which of the following Python pre-defined functions could be used to return the character which matches an ASCII value?
ORD
LEN
CHR
ROUND
Which of the following Python pre-defined functions could be used to return the number of characters in a string
ORD
LEN
CHR
ROUND
Which of the following is the correct output from the following code:
21th Mar 2022
21th Ma 22
21st Mar 22
21th Mar 22
What would the correct output for the following code be?
String = "Falkirk High School"
print(String[8:10] + " " + String[0:7])
Hi Falkirk
Hi School
Fa High Sc
Hi kirk H
Which of the following Python pre-defined functions could be used to convert a floating point number to a whole number?
ORD
LEN
INT
ROUND
Which of the following Python pre-defined functions could be used to convert a floating point number to a whole number?
ORD
LEN
INT
ROUND
Which of the following pieces of code would return the output 2?
print(ord("!"))
print(int(2.34543))
print(14%7)
print(14%6)
Which of the following pieces of code would return the output 5?
print(12%9)
print(14%8)
print(14%9)
print(12%6)
