Font size
WorksheetsY9 Summer 2 Assessment
Total questions: 100
Worksheet time: 1hrs 16mins
The digital forensic process has five basic stages:
Identification, Preservation, Collection, Analysis and what else?
Reporting
Diagnosis
Reduction
Ignoring
What is computer forensics?
It is an attempt to expose, alter, destabilize, destroy, remove to gain unauthorized access or use an asset.
It is the discipline that combines the elements of law and computer science to collect and analyze data from computer Systems, network, Wireless communications and storage devices in a way that is admisible as evidence in a court of law.
When you open photopea and insert the image onto the canvas... How do you import the image?
Insert image as a new layer
File- open and place
Import to export
File open and insert?
What tool do we use to add the heading?
Text Tool
Paint Tool
Fill Tool
Shapes Tool
We also use the text tool to add other layers to the magazine, what are they?
Sub headings
Sub text
Barcode
Website and Price
What type of code do we add to the magazine to be scanned?
QR code
Barcode
Is a PSD lossy or lossless compression?
Lossy
Lossless
Is this image raster or vector?
Vector
Raster
Is this image Raster or Vector?
Vector
Raster
What is Photopea?
Video editing software
Audio software
Image editing software
What is print() called in Python coding?
function
variable
string
output
What is input() called in Python coding?
keyboard
function
variable
string
Look at this code. What is the name called in Python?
function
variable
name
answer
Look at this code. How do we call in Python something enclosed in speech marks?
function
string
name
answer
Which function is used to show something on screen as output? Use just the keyword, without brackets
(a)
Which function is used to communicate with the program while running, writing something using the keyboard? Put the keyword without brackets
(a)
There is a mistake on line 1 of this program. Write the instructions with the corrections.
Be careful with spaces when writing your answer or the quiz will not recognise your answer!
(a)
Which keyword is used for an infinite loop or ITERATION?
else
if answer == "right":
while True:
elif
show on screen the sentence "I love cats too" in Python
(a)
Ask the user the question "What is your favourite colour?" and save their answer in a variable called colour. Make sure to be precise or the quiz will discard your answer
(a)
write the Python instruction (just one line of code) that will check the following condition:
if the variable answer is equal to "right"
(a)
write the Python instruction (just one line of code) that will check the following condition:
if the variable answer is equal to "left"
(a)
What is the correct order of the following?
if
elif
else
if
elif
else
elif
if
else
elif
else
if
Which symbols can you use to check if something is equal to something else?
Be careful when typing the answer!
(a)
check this code. What is missing?
(a)
Read these lines of code.
1. x = 2
2. y = 10
3. x = x+y
What is the value of x at the end of the program?
(a)
Read these lines of code.
1. x = "Hello"
2. y = "Hola"
3. z = "Ciao"
4. y = x
5. z = y
What will be the output print(z)?
(a)
print("Hello World")
What will this piece of Python Code do?
Prints the phrase "Hello World" on to paper
Print or shows the phrase "Hello World" on the screen
Input: Values which get sent from the user into the computer
True
False
Variables must be named. What is a Variable in Python?
Allows change to happen.
Allows you to store a value temporarily
Allows you to ask what has changed.
What is a "String" in Python?
This describes the length of a Python program.
It is something which holds a Python program together.
This refers to any keyboard character including numbers, letters and symbols.
In order to do calculations in Python numbers must be converted from string to integers using int()
True
False
Selection uses If – Else statements allow a program to make a decision.
True
False
Which of the following are comparison operators in Python?
===
=
==
>
<
If we want multiple selections (else if) there is a more efficient way to code it. Which is correct?
ulif
ilif
elif
alif
What does this code snippet do?
score = input(“What is your score?”)
It scores an input.
Allows the user to enter a score. This is saved in a variable called "score".
It automatically marks the student's work.
What are the errors in this code snippet ?
score = input(What is your score?”
No errors
An = is missing
Bracket and speech mark missing
Explain in your own words what the snippet of code below does.
letter1 = input("Please enter a letter: ")
if letter1 == "a":
print("You have entered an a")
else:
print("You have not entered the letter a")
Explain in your own words what the snippet of code below does.
day_of_the_week = input("Please enter the day of the week ")
if day_of_the_week == "Monday":
print("I will be going to school?")
elif day_of_the_week == "Tuesday":
print("I will be going to school?")
elif day_of_the_week == "Wednesday":
print("I will be going to school?")
elif day_of_the_week == "Thursday":
print("I will be going to school?")
elif day_of_the_week == "Friday":
print("I will be going to school?")
elif day_of_the_week == "Saturday":
print("I will be going Shopping?")
elif day_of_the_week == "Sunday":
print("I will be having a rest?")
else:
print("you have not entered a day of the week correctly")
The process in which plain text is encoded to an unreadable state is
Decryption
Coding
Encryption
Data Carving
What will this print to the screen?
print(2*4)
2*4
8
4
error
Which is the python logo?
Top left
Bottom left
Top right
Bottom right
What do we use variables for?
To store data
Print data
Produce functions
To get the users input what function do we use?
input
input<>
input()
INPUT()
What does int() represent?
internet
integer
intel
input
Choose what / performs.
multiply
add
subtract
divide
Why would I get a syntax error?
Line 1 doesn't make sense
Line 2 needs to be indented
No need for quotation marks on line 2
No such thing as an if statement
What would be printed to the screen for print(z)?
Orange
Banana
Cherry
Hello World!
What will be printed to the screen?
5
10
5 + 10
15
What will be printed to the screen?
5 + John
Syntax error - you cannot add str and int together
John
JohnJohnJohnJohnJohn
True or False? All HTML documents must start with a document type declaration (for example, <!DOCTYPE html>).
True
False
True or False? The HTML document itself begins with <html> and ends with </html>.
True
False
The visible part of the HTML document is between:
<html> </html>
<head> </head>
<body> </body>
<h1> </h1>
HTML elements are represented using:
tabs
tags
attributes
headings
True or False? HTML elements can be nested (elements can contain elements).
True
False
How many HTML elements are in this example?
3
5
7
6
Which of these statements are true? (Choose up to four answers.)
All HTML elements can have attributes
Attributes provide additional information about an element
Attributes are always specified in the end tag
Attributes usually come in name/value pairs like: name="value"
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
<p> tag is for...
Page of Text
Picture
Paragraph of text
Pineapples
Which code below is correct for a hyperlink
<a>
"https://google.com"
Click Me
</a>
<a>Click Me>
"https://google.com"
</a>
<a herf="https://google.com">
Click Me
</a>
<a href="https://google.com">
Click Me
</a>
src attribute in an image tag means what?
Source of the image
Name of the image
Description of the image
Not used with image tag
Which of the following is the code for a paragraph to be blue?
<td style=“background-color:blue;”>
<h1 style=“font-size:60px;”>
<p style=“color:blue;”>
<tagname style=“property:value;”>
What is the font size in this code: <p style=“color:blue; background-color:yellow;
font-size:60px”>Hello</p>
20pixles
40pixels
50pixels
60pixels
Which of the following codes would create a horizontal line
<br>
<h1></h1>
<hr>
<p>
Which of the listed heading tags creates the largest heading?
H2
H3
H4
H6
HTML coding involves using ____________ to create webpages.
Tabs
Tags
Labels
Quotes
HTML stands for...
Hyper Text Markup Language
High Tech MachineLanguage
High Tech Modem Language
Hyper Tech Markup Lexicon
This coding is used to create a paragraph:
<pr></pr>
<p></p>
<para></para>
<par></par>
Which is the correct HTML tag for creating an unordered list?
<ul>
<uline>
<u>
<under>
Which tag would you use to make a heading?
<heading></heading>
<bigger></bigger>
<h></h1>
<h1></h1>
Which tag pair is used to create the largest heading?
<h1></h1>
<h9></h9>
<h type = "largest"></h>
<h6> </h6>
The beginning tag works like the "on" switch and the ending tag works like the "off" switch.
True
False
Everything visible on a web page goes between these two tags.
<body> </body>
<title> </title>
<header> </header>
None of the Above
Which of the following creates the smallest header?
<H2><./H2>
<H3></H3>
<H4></H4>
<H6></H6>
Website Content is the text, images, and other elements included in a web page.
True
False
When coding an ordered or unordered list, each separate item in the list uses this tag:
<li></li>
<list></list>
<item></item>
Which of these is another name for a web page address?
CSS
JAVA
URL
CNN
More than 90 percent of websites on the Internet are coded using HTML.
True
False
The universally accepted name for the first page on a website is
home.html
index.html
first.html
Which of the following pieces of code will create a horizontal line across the page?
<hr>
<line>
<p>
<grid>
It is a global network of billions of computers and other electronic devices.
search engine
internet
web browser
all of the above
What is metadata?
Data that is encrypted for security
Data that is stored in a database
Data that provides information about other data
Data that is used to manipulate other data
What are the different types of metadata?
cultural metadata
experiential metadata
descriptive metadata, structural metadata, administrative metadata, and preservation metadata
technical metadata
What is the role of metadata in search engines?
Metadata in search engines helps improve website design.
Metadata in search engines determines the ranking of web pages.
Metadata in search engines provides information about web pages.
Metadata in search engines is used for advertising purposes.
How can metadata be used to organize and categorize information?
By encrypting the data
By deleting unnecessary information
By providing descriptive information about the data
By compressing the data
gathering and measuring information on targeted variables in order to answer questions and evaluate outcomes
data collection
collaboration
unstructured data
big data
What is a web browser?
A type of search engine
A type of website
A type of software
A type of computer
What is this type of computer?
Desktop
Laptop
Tablet
Games Console
What is this type of computer?
Desktop
Laptop
Tablet
Games Console
An example of computer hardware is...
Web browser
Keyboard
App
Operating system
example of computer software is...
Operating system
Mouse
CPU
Monitor
One benefit of a laptop is...
More portable than a desktop
Can be easily upgraded
Generally cheaper than a desktop
One benefit of a tablet is...
Requires a power source
May not have as many functions as a laptop or desktop
Extremely portable
One drawback of a tablet...
Requires a power source
May not have as many functions as a laptop or desktop
Extremely portable
Computer _____________ is a set of instructions that tells a computer what to do or how to perform a task.
Hardware
Software
Malware
How are images manipulated in the media?
Airbrushing and editing
Lighting
touch ups
all
