
2.1 Algorithms (Past Questions)
Quiz
•
Computers
•
10th - 12th Grade
•
Practice Problem
•
Hard
Ian Currie
Used 20+ times
FREE Resource
Enhance your content in a minute
51 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
There is a subroutine, HEX(), that takes a denary number between 10 and 15 and returns the corresponding hexadecimal number. E.g. HEX(10) would return "A", HEX(15) would return "F".
Write an algorithm, using the subroutine HEX(), to convert any whole decimal number between 0 and 255 into a 2 digit hexadecimal number.
The image contains an example answer.
There were four marks available:
- Taking a number as input
- Using HEX subroutine correctly
- Calculating Digit 1
- Calculating Digit 2
Which line(s) of code earned mark: Taking a number as input
INPUT decimal
digitl = decimal DIV 16
IF digitl>=10 THEN
...digit1 = HEX(digit1)
IF digit2>=10 THEN
...digit2=HEX(digit2)
digit2 = decimal - (digit1*16)
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
There is a subroutine, HEX(), that takes a denary number between 10 and 15 and returns the corresponding hexadecimal number. E.g. HEX(10) would return "A", HEX(15) would return "F".
Write an algorithm, using the subroutine HEX(), to convert any whole decimal number between 0 and 255 into a 2 digit hexadecimal number.
The image contains an example answer.
There were four marks available:
- Taking a number as input
- Using HEX subroutine correctly
- Calculating Digit 1
- Calculating Digit 2
Which line(s) of code earned mark: Using HEX subroutine correctly
INPUT decimal
digitl = decimal DIV 16
IF digitl>=10 THEN
...digit1 = HEX(digit1)
IF digit2>=10 THEN
...digit2=HEX(digit2)
digit2 = decimal - (digit1*16)
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
There is a subroutine, HEX(), that takes a denary number between 10 and 15 and returns the corresponding hexadecimal number. E.g. HEX(10) would return "A", HEX(15) would return "F".
Write an algorithm, using the subroutine HEX(), to convert any whole decimal number between 0 and 255 into a 2 digit hexadecimal number.
The image contains an example answer.
There were four marks available:
- Taking a number as input
- Using HEX subroutine correctly
- Calculating Digit 1
- Calculating Digit 2
Which line(s) of code earned mark: Calculating Digit 1
INPUT decimal
digitl = decimal DIV 16
IF digitl>=10 THEN
...digit1 = HEX(digit1)
IF digit2>=10 THEN
...digit2=HEX(digit2)
digit2 = decimal - (digit1*16)
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
There is a subroutine, HEX(), that takes a denary number between 10 and 15 and returns the corresponding hexadecimal number. E.g. HEX(10) would return "A", HEX(15) would return "F".
Write an algorithm, using the subroutine HEX(), to convert any whole decimal number between 0 and 255 into a 2 digit hexadecimal number.
The image contains an example answer.
There were four marks available:
- Taking a number as input
- Using HEX subroutine correctly
- Calculating Digit 1
- Calculating Digit 2
Which line(s) of code earned mark: Calculating Digit 2
INPUT decimal
digitl = decimal DIV 16
IF digitl>=10 THEN
...digit1 = HEX(digit1)
IF digit2>=10 THEN
...digit2=HEX(digit2)
digit2 = decimal - (digit1*16)
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Johnny is writing a program to create usernames. The first process he has developed is shown in the flowchart in Fig. 1.
[Start]
↓
[Input firstname]
↓
[Input surname]
↓
[name = LEFT(firstName, 3)]
↓
[username = name + left(Surname,2)]
↓
[OUTPUT username]
↓
[Stop]
For example, using the process in Fig. 1, Tom Ward's user name would be TomWa.
State, using the process in Fig. 1, the username for Rebecca Ellis.
RebEl
EllRe
ElReb
ReEll
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Johnny has updated the process used to create usernames as follows:
If the person is male, then their username is the last 3 letters of their surname and the first 2 letters of their first name.
If the person is female, then their username is the first 3 letters of their first name and the first 2 letters of their surname.
What would be the username for a male called Fred Biscuit using the updated process?
UitFr
FreBi
FrUit
BiFre
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Johnny has updated the process used to create usernames as follows:
If the person is male, then their username is the last 3 letters of their surname and the first 2 letters of their first name.
If the person is female, then their username is the first 3 letters of their first name and the first 2 letters of their surname.
Write an algorithm for Johnny to output a username using the updated process.
An example answer can be seen in the image.
There were six marks available:
- Taking firstname, surname and gender as input
- Checking IF gender is male / female (using appropriate selection)
- For male ...Generating last 3 letters of surname using appropriate string manipulation
- ...Generating first 2 of letters of firstname and adding to previous
- For female.... correctly calculating as before
- Correct concatenation and output
Which line(s) earned the mark: - Taking firstname, surname and gender as input
input firstname, surname, gender
if gender = "Male" then
else
...username = RIGHT(surname, 3) + LEFT(firstname,2)
...username = LEFT (firstname,3) + LEFT(surname,2)
Create a free account and access millions of resources
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?
Similar Resources on Wayground
50 questions
Application Software Quiz
Quiz
•
12th Grade - University
50 questions
AQA 8525 GCSE CS 3.2.10 Subroutines & 3.2.11 Robust & Secure
Quiz
•
10th - 11th Grade
52 questions
Computer Basics
Quiz
•
9th - 12th Grade
50 questions
Journalistsic Integrity and Ethics
Quiz
•
9th - 12th Grade
50 questions
VOIP XII
Quiz
•
1st Grade - University
50 questions
XIRPL2_PASQUIZZ
Quiz
•
1st Grade - Professio...
50 questions
Mapel Pilihan TKJ - Mikrotik Routerboard (XI TKJ - Genap)
Quiz
•
11th Grade
50 questions
Grade 10 Computer Systems Quiz
Quiz
•
10th Grade - University
Popular Resources on Wayground
5 questions
This is not a...winter edition (Drawing game)
Quiz
•
1st - 5th Grade
15 questions
4:3 Model Multiplication of Decimals by Whole Numbers
Quiz
•
5th Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
10 questions
The Best Christmas Pageant Ever Chapters 1 & 2
Quiz
•
4th Grade
12 questions
Unit 4 Review Day
Quiz
•
3rd Grade
10 questions
Identify Iconic Christmas Movie Scenes
Interactive video
•
6th - 10th Grade
20 questions
Christmas Trivia
Quiz
•
6th - 8th Grade
18 questions
Kids Christmas Trivia
Quiz
•
KG - 5th Grade
Discover more resources for Computers
15 questions
Internet Vocabulary Notebook Check #2 - CTEA(2024)
Quiz
•
12th Grade
11 questions
Internet Terms Vocabulary- Notebook Check #1- CTEA
Quiz
•
12th Grade
50 questions
Money Matters Fall 2025 Final Exam — Worksheet Questions
Quiz
•
12th Grade
47 questions
CSF Final Exam Practice
Quiz
•
9th - 12th Grade
