Font size
Worksheets2023-2024 Year 9 CS spring 2 revision
Total questions: 81
Worksheet time: 51mins
What is you full name?
Write a formula to find calculate the total stock level in the bakery for all of its products combined.
Your formula MUST include cell references.
(a)
Which mathematical function does the symbol below represent?
/
To the Power of
Multiplication
Division
Which of the formula's would correctly output Yes/No in column D.
=IF(D2 < 10) "Yes", "No"
=IF(D2 < 10, "Yes", "No")
=IF(D2 > 10, "Yes", "No")
IF(D2 > 10, "Yes", "No")
Which is the correct formula for VLOOKUP?
VLOOKUP(cell data to find, sub table, column to return, fuzzy match)
=VLOOKUP(cell data to find, sub table, column to return, fuzzy match)
=VLOOKUP(sub table, cell data to find, column to return, fuzzy match)
=VLOOKUP(cell data to return, sub table, column to find, fuzzy match)
The absolute cell reference uses which symbol:
$
%
*
&
VLOOKUP formula to be used to get result in the highlighted cell
=VLOOKUP(A2:B9,2,FALSE)
=VLOOKUP(D3,A2:B9,FALSE)
=VLOOKUP(D3,A2,2,FALSE)
=VLOOKUP(D3,A2:B9,2,FALSE)
What type of function is used to add the total hours for full-time employees?
SUM
SUMIF
COUNTIF
TOTALSUM
User can remove conditional formatting for
Selected cell
Other document
Whole document
Entire sheet
When a cell reference is locked so that it does not move with the formula it is known as?
An absolute reference
A relative reference
A locked reference
A non moving reference
Formulas can be copied to adjacent cells with the ____________.
Fill handle
PgDn Key
Function key F4
None of the above
Multiple arguments must be separated by a ______________.
Space
Comma
= Sign
!
To use multiple worksheets as possible cell reference may state ________________.
Sheet1!A1
Sheet1$A1
=Sheet$1A$1
Which software program do we use to create a database
Microsoft Excel
Microsoft Word
Microsoft Access
Microsoft Publisher
Who might use a database?
School
Police
Employer
All of the above
What is an advanage of a database?
You can input information
Its different to Excel
It saves files
Can search through and find information quickly
What is a unique identifying field called?
Field
Primary Key
Record
Query
Short text, date, long text and number are all examples of what?
Data types
Headings
Fields
Records
A column in a database is better known as a...
Record
Query
Field
Form
A row in a database is better known as
Record
Query
Field
Form
A query is used to
Sort the database in alphabetical order
Search the database
Delete records
Create a form
If we are running a query and looking for all records with a date before 1999, we type what into the criteria?
>1999
>01/01/1999
<01/01/1999
<1999
The command for "not equal to" is...
<>
<=
>=
><
It is the association between two tables through a common field also known as a key or primary key.
Control
Management
Relationship
Entity
The table in this picture, is shown in
design view
datasheet view
access view
The table in this picture, is shown in
design view
datasheet view
access view
SELECT First_Name
FROM Employee
WHERE Title = "Programmer" AND Gender = "F"
Would return what?
Yolanda
Yolanda and Jennifer
Jennifer
SELECT *
_______ CUSTOMER;
Less than or equal to?
>=
=>
=<
<=
In order to extract the population of Tanzania from a database of world countries you would need the following SQL code:
(a) population (b) World (c) Country = (d)
What is 010 + 010?
110
010
100
011
Before von Neumann computers were built to perform just one job. What idea did von Neumann have which is still in use today?
Memory on the CPU
Stored program concept
separate input and output devices
registers on the CPU
What is the missing label?
storage
bus
output
CPU
What is the CPU?
central processing unit
central processor unit
common processing unit
central process utility
Tick all options that happen in the FETCH CYCLE?
PC is incremented
The Instruction at the MAR address is read from RAM
The PC value is copied to the MAR
The instruction in the IR is decoded
The value in the MDR is written to the address in the MAR.
There are 3 buses in von Neumann architecture. The data bus, the control bus and ???
address bus
instruction bus
processor bus
arithmetic bus
The Program Counter
Stores the address of the next instruction in memory
Stores the address of where the next item will be fetched from
Stores data fetched from memory, or waiting to be stored in memory
Stores the result of arithmetic calculations
Accumulator
Stores the address of the next instruction in memory
Stores the address of where the next item will be fetched from
Stores data fetched from memory, or waiting to be stored in memory
Stores the result of arithmetic calculations
turtle.penup()
turtle.pendown()
turtle.forward(120)
turtle.penup()
turtle.forward(120)
turtle.pendown()
What shape will be the output from this code?
Square
Triangle
Circle
Rectangle
How do you tell that Python that you are going to use the turtle library?
import_turtle
turtle import
import turtle
from turtle import
What is wrong with this piece of code
Must use the American spelling of colour - "color"
Remove the prefix "screen." on Line 3
Don't write the name of the colour in quote marks
Don't add a capital letter to "Screen"
There is an error on this piece of code, what is wrong?
Nothing
No start_fill() set
No colour set in the end fill e.g. end_fill("blue")
No colour set in the start fill e.g. start_fill("blue")
The .turn(x) command instructs the turtle to turn
Clockwise if x is positive
Anti-clockwise if x is positive
