
2.1 Algorithms (Past Questions)
Authored by Ian Currie
Computers
10th - 12th Grade
Used 20+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
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)
Access all questions and much more by creating a free account
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
KUIS Jaringan Komputer dan Internet
Quiz
•
7th Grade - University
50 questions
BASIC JAVA
Quiz
•
11th Grade
46 questions
Adobe Animate 2015
Quiz
•
9th - 12th Grade
50 questions
DG Muda (2)
Quiz
•
KG - Professional Dev...
50 questions
UNIT 2.6 DATA REPRESENTATION
Quiz
•
10th Grade
47 questions
INFORMATIKA PTS 1 SEM 2 PRETEST
Quiz
•
11th Grade
47 questions
Networking - Practice Test #1
Quiz
•
9th Grade - University
48 questions
IA BRP 5TO
Quiz
•
10th Grade
Popular Resources on Wayground
15 questions
Fractions on a Number Line
Quiz
•
3rd Grade
10 questions
Probability Practice
Quiz
•
4th Grade
15 questions
Probability on Number LIne
Quiz
•
4th Grade
20 questions
Equivalent Fractions
Quiz
•
3rd Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
22 questions
fractions
Quiz
•
3rd Grade
6 questions
Appropriate Chromebook Usage
Lesson
•
7th Grade
10 questions
Greek Bases tele and phon
Quiz
•
6th - 8th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials
Interactive video
•
6th - 10th Grade
14 questions
[AP CSP] JavaScript Programming Quiz
Quiz
•
9th - 12th Grade
10 questions
Understanding Computers and Computer Engineering
Interactive video
•
7th - 12th Grade
37 questions
Python - Tuples, Lists, and List Methods
Quiz
•
9th - 12th Grade