
2.1 Algorithms (Past Questions)

Quiz
•
Computers
•
10th - 12th Grade
•
Hard
Ian Currie
Used 20+ times
FREE Resource
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
Similar Resources on Wayground
50 questions
MIDTERM EXAM OP1

Quiz
•
12th Grade
55 questions
AHJ: Unit13-User Defined Data Types and File Organization Quiz

Quiz
•
12th Grade - University
50 questions
AHJN: U8 DB Fr-TB

Quiz
•
12th Grade - University
52 questions
Y10. U4. Networks Part 1

Quiz
•
9th - 12th Grade
49 questions
N5 Computing Science: Environmental Impact

Quiz
•
10th Grade
50 questions
Programming with Karel Review

Quiz
•
9th - 12th Grade
50 questions
MIDTERM EXAM IPT

Quiz
•
12th Grade
56 questions
Python Quiz

Quiz
•
10th Grade
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
10 questions
UPDATED FOREST Kindness 9-22

Lesson
•
9th - 12th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
US Constitution Quiz

Quiz
•
11th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
20 questions
Analog vs Digital

Quiz
•
9th - 12th Grade
10 questions
CTEA Computer Vocab Terms #1

Quiz
•
12th Grade
10 questions
Exploring Cybersecurity Techniques and Threats

Interactive video
•
6th - 10th Grade
10 questions
Understanding the Internet and Data Transmission

Interactive video
•
7th - 12th Grade