

Easy Wins! Paper 1 and Paper 2 Y10.
Presentation
•
Computers
•
8th Grade
•
Medium
Christopher Norris
Used 3+ times
FREE Resource
4 Slides • 72 Questions
1
Paper 1 - "Easy Wins"
2
Multiple Choice
What is abstraction?
The process of filtering out unnecessary detail
The process of filtering out irrelevant characteristics
The process of filtering out irrelevant characteristics and unnecessary detail
3
Multiple Choice
What is decomposition?
Breaking down a complex problem or system into smaller, more manageable parts
Adding detail to make a problem more complex
When you ignore the unnecessary detail in a problem
4
Multiple Choice
An algorithm is a step by step instructions to solve a problem.
An algorithm is a process of baking bread.
An algorithm is a software used to compute numbers.
An algorithm is the process of breaking problems.
5
Multiple Choice
10
20
30
40
6
Multiple Choice
On/Off
Pink/Blue
Hello/Goodbye
Yes/No
7
Multiple Choice
START / STOP
INPUT / OUTPUT
PROCESS
DECISION
8
Multiple Choice
Which of the following is not done by abstraction?
Identifies essential details
Disregards non-essential information
Breaks the problem down into smaller tasks
9
Multiple Choice
Which of the following is not done by decomposition?
Allows multiple people to work on the problem together
Disregards non-essential information
Breaks the problem down into smaller tasks
10
Multiple Choice
When drawing a dog, which of the following characteristics is non-essential?
Dogs have 4 paws
Dogs have fur
Dogs have brown fur
11
Multiple Choice
When designing a building that must be accessible for wheelchairs, which of the following characteristics is non-essential?
Number of doors
Number of walls
Number of wall paintings
12
Multiple Choice
Instructions carried out one after another in order is a...
List
Sequence
Collection
Series
13
Multiple Choice
Which is the definition of "sequence"?
A set of instructions in a specific order
Where instructions repeat
Code where decisions are made
14
Multiple Choice
Which is the definition of "selection"?
A set of instructions in a specific order
Where instructions repeat
Code where decisions are made
15
Multiple Choice
Which is the definition of "iteration"?
A set of instructions in a specific order
Where instructions repeat
Code where decisions are made
16
Multiple Choice
What is a Count-Controlled loop?
for loop
while loop
17
Multiple Choice
A count controlled loop will..
Repeat code until a condition is met
Repeat code a specific amount of times
Repeat code a random amount of times
None of the above
18
Multiple Choice
What will this code do?
Print Numbers 1-11
Print Numbers 1-10
Print Numbers 2-10
Print Error
19
Multiple Choice
What sort of loop is this?
Count Controlled
Condition Controlled
20
Multiple Choice
Which of these is NOT a loop in python?
for loop
while loop
nested loop
if loop
21
Multiple Choice
What will this code print?
Print the word 'letter'.
Print a user input on one line.
Print a user input one letter at a time.
Print an Error.
22
Multiple Choice
Which of these operators means EQUAL TO?
'='
'=>'
'<='
'=='
23
Multiple Choice
A condition controlled loop is...
A while loop
A for loop
24
Multiple Choice
What is the error in this code?
incorrect variable name
incorrect indentation
incorrect speech marks
incorrect loop
25
Multiple Choice
Select the best description to explain what a binary search algorithm is.
Put the elements in order, check each item in turn.
Put the elements in order, compare with the middle value, split the list in order and repeat.
Elements do not need to be in order, check each item in turn.
Elements do not need to be in order, compare to the middle value, split the list in order and repeat
26
Multiple Choice
3 5 9 10 23
How many comparisons would it take to find number 9?
0-1
2-3
4-5
I can't find the number 9
27
Multiple Choice
Bubble Sort
Insertion Sort
Merge Sort
Quick Sort
28
Multiple Choice
If i want to continuously check for a correct answer, what loop would i use?
for loop
while loop
29
Multiple Choice
Bubble Sort
Insertion Sort
Merge Sort
Quick Sort
30
Paper 2 "Easy Wins"
31
Multiple Choice
What is the main feature of the von Neumann Computer architecture?
There is a single PRIMARY MEMORY for both data and instructions.
The model as a single CPU
The instructions are stored in PRIMARY MEMORY
Data is stored in SECONDARY STORAGE
32
Multiple Choice
Random Only Memory
Random Only Memory
Rapid Only Machine
Read Only Memory
33
Multiple Choice
Random Access Memory
Random Area Machine
Real Access Machine
Rapid Access Memory
34
Multiple Choice
ROM Vs RAM: What is used to boot up the computer when it is switched on...
RAM
ROM
35
Multiple Choice
What does volatile mean?
Data is lost when the power is turned off
Data is NOT lost when the power is turned off
36
Multiple Choice
Which component receives its instructions directly from the RAM?
Motherboard
BIOS
CPU
Hard Drive
37
Multiple Select
Which three are factors that affect CPU performance?
Cache Size
Clock Speed
Number of Cores
Number of Control Units
Size of Memory Address Register
38
Multiple Choice
What is the cache?
A small amount of memory inside the CPU that stores commonly used instructions.
A small amount of memory outside the CPU that stores commonly used instructions.
A portion of the Hard Disk Drive (secondary storage) that is used to hold instructions currently being worked on by the CPU.
A register within the Random Access Memory, used primarily for storing instructions used each time the computer is switched on.
A part of the CPU that often overheats from the amount of instructions it executes every second.
39
Multiple Choice
What is clock speed?
The number of cycles per second, measured in Hertz (Hz).
The speed with which the computer clock(the one that tells the time in the bottom right hand corner) is refreshed.
The speed with which an individual instruction can be passed from RAM to the Memory Data Register.
The number of bits (1s and 0s) that can be processed per second, measured in Hertz (Hz).
The number of nibbles that can be processed per second, measured in Kilohertz (Hz).
40
Multiple Choice
The faster the clock speed...
The more instructions can be fetched, decoded and executed in a given period of time.
The easier it is to time the completion of a particular task by the CPU.
The greater the chance of the CPU being overclocked and potentially being damaged.
The less threads the CPU will be dealing with at any given moment in time.
41
Multiple Choice
A cycle is...
Fetching, decoding and executing an instruction.
Copying data from the accumulator and sending it back to the RAM (primary memory).
Storing, decoding and fetching an instruction
Thirty two 1s and 0s being stored in the registers of the CPU, ready to be processed.
42
Multiple Choice
Multiple cores are...
Architecture where a single control unit works with several cores (the bits of a processor that actually carry out the instructions).
Architecture where several control units work with more than one core (the bits of a processor that actually carry out the instructions).
Architecture where there is more than one processor. Each processor is given its own dedicated chip of primary memory (RAM), to prevent data collisions.
Is actually a misleading phrase. It actually means more than one control unit working with a single core(the bit of a processor that actually carry out the instructions).
43
Multiple Choice
A Dual Core Processor improves performance by...
Each core simultaneously processing instructions (so the time required is almost halved).
One core can work faster on a task because there is a redundant processor not having to be managed by the Control Unit.
Each core is designed to be significantly quicker so together they will process more together.
Bottlenecks of data are removed from the processor bus because they are being passed directly into each code.
44
Multiple Choice
Inside the CPU, you will find:
ALU, CU, registers, cache memory
ADU, PC, storage, RAM memory
ARM, PC, controller, cache memory
APM, CU, time signal, RAM memory
45
Multiple Choice
An embedded system is ......
A computer that performs only one task
A small computer that is built into a bigger system
A small computer, built into a larger system, that performs a dedicated task
A computer that responds to its environment
46
Multiple Select
How many of the following are examples of Embedded Systems?
Mobile Phone
Washing Machine
Microwave
Fridge
Laptop
47
Multiple Choice
A computer has two main parts: _______________ and _______________.
hardware, lightware
software, brightware
hardware, software
lightware, brightware
48
Multiple Choice
What is Software?
A monitor
Programs or Apps that can be run on a computer
A mouse
Physicals parts of a Computer
49
Multiple Choice
What is this component called?
CPU
Hard Drive
RAM
Motherboard
50
Multiple Choice
RAM
URL
ROM
flash drive
51
Multiple Choice
Which is an example of primary memory?
RAM
HDD
SSD
Flash Memory
52
Multiple Select
Which of the following are true of primary memory? (choose more than one)
It is always volatile
It has direct access to the CPU
It is non-volatile
It is inside the computer
It cannot be changed
53
Multiple Choice
What are the 2 types of System Software?
Utility and Application
Application and System
Utility and Operating System
Operating System and Application
54
Open Ended
Name 3 jobs the Operating System performs
55
Jobs of the Operating System
Different to utility software.
Provides a user interface
Manages hardware
Manages input and output drivers
File/Memory Management
Manages processes
56
57
Multiple Choice
Encrypted messages are called...?
Originaltext
Plaintext
Ciphertext
Keytext
58
Multiple Choice
1101 to decimal
15
11
12
13
59
Multiple Choice
1111 to decimal
15
11
12
13
60
Multiple Choice
64 to binary
1000 0000
0100 0000
0010 0000
0001 0000
61
Multiple Choice
0 and 1
1 and 2
1, 2, 3, 4, 5, 6, 7, 8, 9, 10
1, 2, 4, 8, 16
62
Multiple Choice
Computers store all data using...
Binary
Hexadecimal
Denary
Octal
63
Multiple Choice
a numerical label assigned to each device.
the smallest unit of data in a computer.
a keyboarding term for typing.
is a numeral system made up of 16 symbols.
64
Multiple Choice
25 to binary
11100
11001
10011
00111
65
Multiple Choice
19 to binary
11100
11001
10011
00111
66
Multiple Choice
128 to binary
1000 0000
0100 0000
0010 0000
0001 0000
67
Multiple Choice
00111111
00001111
00010111
00011111
68
Multiple Choice
44
55
66
77
69
Multiple Choice
Convert the binary number 11000011 to Hex
11
A2
C3
D4
70
Multiple Select
Which of these are hexadecimal digits?
F
G
6
0
H
71
Multiple Choice
What is the result of shifting a binary number 2 to the left
Divides by 4
Divides by 2
Multiplies by 2
Multiplies by 4
72
Multiple Choice
What is the result of shifting a binary number 4 to the right
Divides by 4
Divides by 16
Multiplies by 4
Multiplies by 16
73
Open Ended
What is the result of shifting this binary number 3 to the left: 10001000
74
Open Ended
What is the result of shifting this binary number 4 to the right: 10001000
75
Multiple Choice
Calculate the binary addition:
1001
1011
10100
010101
011100
01010011
76
Multiple Choice
Calculate the binary addition:
01100000
01101001
11001001
11101001
11001011
1010101111
Paper 1 - "Easy Wins"
Show answer
Auto Play
Slide 1 / 76
SLIDE
Similar Resources on Wayground
70 questions
Chemical Reaction Lessons
Presentation
•
8th Grade
70 questions
Stem and Leaf Plot Lesson and Purpose
Presentation
•
8th Grade
69 questions
Yearbook Design
Presentation
•
8th Grade
68 questions
Review for US Constitution Test
Presentation
•
8th Grade
70 questions
2/24 - 3rd 9 Weeks Review
Presentation
•
8th Grade
70 questions
10.3 Stem & Leaf Diagrams review lesson + Quiz
Presentation
•
8th Grade
69 questions
2-20-25 types of bonding slides 1-22
Presentation
•
8th Grade
70 questions
Stem and Leaf Intro
Presentation
•
8th Grade
Popular Resources on Wayground
6 questions
Secondary Safety Quiz
Presentation
•
9th - 12th Grade
10 questions
MyPath Diagnostic Overview
Presentation
•
6th - 8th Grade
20 questions
Lab Safety Quiz
Quiz
•
6th Grade
21 questions
Continents and Oceans
Quiz
•
6th Grade
20 questions
Adding and Subtracting Decimals
Quiz
•
5th Grade
20 questions
Parts of Speech
Quiz
•
5th Grade
16 questions
Subject & Predicate
Quiz
•
5th Grade
21 questions
Lab Safety
Quiz
•
10th Grade
Discover more resources for Computers
20 questions
Early Computing
Quiz
•
7th - 12th Grade
11 questions
Technology Acceptable Use
Quiz
•
6th - 8th Grade
16 questions
Clovis Unified Student Use of Technology
Quiz
•
4th - 8th Grade
10 questions
Exploring Computer Hardware and Software Components
Interactive video
•
6th - 10th Grade
16 questions
Responsible Use Guideline Quiz
Quiz
•
6th - 8th Grade
20 questions
Digital Citizenship
Quiz
•
8th - 12th Grade
15 questions
Student Technology Agreement
Quiz
•
6th - 8th Grade
22 questions
Electronic Computing
Quiz
•
8th - 12th Grade