wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Y9 Summer 2 Assessment

Total questions: 100

Worksheet time: 1hrs 16mins

Name
Class
Date
1.

The digital forensic process has five basic stages:

Identification, Preservation, Collection, Analysis and what else?

a)

Reporting

b)

Diagnosis

c)

Reduction

d)

Ignoring

2.

What is computer forensics?

a)

It is an attempt to expose, alter, destabilize, destroy, remove to gain unauthorized access or use an asset.

b)

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.

3.

When you open photopea and insert the image onto the canvas... How do you import the image?

a)

Insert image as a new layer

b)

File- open and place

c)

Import to export

d)

File open and insert?

4.

What tool do we use to add the heading?

a)

Text Tool

b)

Paint Tool

c)

Fill Tool

d)

Shapes Tool

5.

We also use the text tool to add other layers to the magazine, what are they?

a)

Sub headings

b)

Sub text

c)

Barcode

d)

Website and Price

6.

What type of code do we add to the magazine to be scanned?

a)

QR code

b)

Barcode

7.

Is a PSD lossy or lossless compression?

a)

Lossy

b)

Lossless

8.

Is this image raster or vector?

a)

Vector

b)

Raster

9.

Is this image Raster or Vector?

a)

Vector

b)

Raster

10.

What is Photopea?

a)

Video editing software

b)

Audio software

c)

Image editing software

11.

What is print() called in Python coding?

a)

function

b)

variable

c)

string

d)

output

12.

What is input() called in Python coding?

a)

keyboard

b)

function

c)

variable

d)

string

13.

Look at this code. What is the name called in Python?

a)

function

b)

variable

c)

name

d)

answer

14.

Look at this code. How do we call in Python something enclosed in speech marks?

a)

function

b)

string

c)

name

d)

answer

15.

Which function is used to show something on screen as output? Use just the keyword, without brackets

(a)  

16.

Which function is used to communicate with the program while running, writing something using the keyboard? Put the keyword without brackets

(a)  

17.

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)  

18.

Which keyword is used for an infinite loop or ITERATION?

a)

else

b)

if answer == "right":

c)

while True:

d)

elif

19.

show on screen the sentence "I love cats too" in Python

(a)  

20.

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)  

21.

write the Python instruction (just one line of code) that will check the following condition:

if the variable answer is equal to "right"

(a)  

22.

write the Python instruction (just one line of code) that will check the following condition:

if the variable answer is equal to "left"

(a)  

23.

What is the correct order of the following?

a)

if

elif

else

b)

if

elif

else

elif

c)

if

else

elif

d)

else

if

24.

Which symbols can you use to check if something is equal to something else?

Be careful when typing the answer!

(a)  

25.

check this code. What is missing?

(a)  

26.

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)  

27.

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)  

28.

print("Hello World")


What will this piece of Python Code do?

a)

Prints the phrase "Hello World" on to paper

b)

Print or shows the phrase "Hello World" on the screen

29.

Input: Values which get sent from the user into the computer

a)

True

b)

False

30.

Variables must be named. What is a Variable in Python?

a)

Allows change to happen.

b)

Allows you to store a value temporarily

c)

Allows you to ask what has changed.

31.

What is a "String" in Python?

a)

This describes the length of a Python program.

b)

It is something which holds a Python program together.

c)

This refers to any keyboard character including numbers, letters and symbols.

32.

In order to do calculations in Python numbers must be converted from string to integers using int()

a)

True

b)

False

33.

Selection uses If – Else statements allow a program to make a decision.

a)

True

b)

False

34.

Which of the following are comparison operators in Python?

a)

===

b)

=

c)

==

d)

>

e)

<

35.

If we want multiple selections (else if) there is a more efficient way to code it. Which is correct?

a)

ulif

b)

ilif

c)

elif

d)

alif

36.

What does this code snippet do?


score = input(“What is your score?”)

a)

It scores an input.

b)

Allows the user to enter a score. This is saved in a variable called "score".

c)

It automatically marks the student's work.

37.

What are the errors in this code snippet ?


score = input(What is your score?”

a)

No errors

b)

An = is missing

c)

Bracket and speech mark missing

38.

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")

4 lines
39.

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")

4 lines
40.
Every computer has a unique IP address on the network
a)
True
b)
False
41.
One of the most popular online activities — and one that poses the greatest risk to your privacy — is:
a)
online gaming
b)
watching movies
c)
social networking
d)
checking e-mail messages
42.

The process in which plain text is encoded to an unreadable state is

a)

Decryption

b)

Coding

c)

Encryption

d)

Data Carving

43.

What will this print to the screen?


print(2*4)

a)

2*4

b)

8

c)

4

d)

error

44.

Which is the python logo?

a)

Top left

b)

Bottom left

c)

Top right

d)

Bottom right

45.

What do we use variables for?

a)

To store data

b)

Print data

c)

Produce functions

46.

To get the users input what function do we use?

a)

input

b)

input<>

c)

input()

d)

INPUT()

47.

What does int() represent?

a)

internet

b)

integer

c)

intel

d)

input

48.

Choose what / performs.

a)

multiply

b)

add

c)

subtract

d)

divide

49.

Why would I get a syntax error?

a)

Line 1 doesn't make sense

b)

Line 2 needs to be indented

c)

No need for quotation marks on line 2

d)

No such thing as an if statement

50.

What would be printed to the screen for print(z)?

a)

Orange

b)

Banana

c)

Cherry

d)

Hello World!

51.

What will be printed to the screen?

a)

5

b)

10

c)

5 + 10

d)

15

52.

What will be printed to the screen?

a)

5 + John

b)

Syntax error - you cannot add str and int together

c)

John

d)

JohnJohnJohnJohnJohn

53.

True or False? All HTML documents must start with a document type declaration (for example, <!DOCTYPE html>).

a)

True

b)

False

54.

True or False? The HTML document itself begins with <html> and ends with </html>.

a)

True

b)

False

55.

The visible part of the HTML document is between:

a)

<html> </html>

b)

<head> </head>

c)

<body> </body>

d)

<h1> </h1>

56.

HTML elements are represented using:

a)

tabs

b)

tags

c)

attributes

d)

headings

57.

True or False? HTML elements can be nested (elements can contain elements).

a)

True

b)

False

58.

How many HTML elements are in this example?

a)

3

b)

5

c)

7

d)

6

59.

Which of these statements are true? (Choose up to four answers.)

a)

All HTML elements can have attributes

b)

Attributes provide additional information about an element

c)

Attributes are always specified in the end tag

d)

Attributes usually come in name/value pairs like: name="value"

60.

Which is the proper way to write an h1 tag

a)

<h1>Hello</h1>

b)

<h1>"Hello

c)

{h1}Hello{/h1}

d)

<h1>Hello<h1>

61.

<p> tag is for...

a)

Page of Text

b)

Picture

c)

Paragraph of text

d)

Pineapples

62.

Which code below is correct for a hyperlink

a)

<a>

"https://google.com"

Click Me

</a>

b)

<a>Click Me>

"https://google.com"

</a>

c)

<a herf="https://google.com">

Click Me

</a>

d)

<a href="https://google.com">

Click Me

</a>

63.

src attribute in an image tag means what?

a)

Source of the image

b)

Name of the image

c)

Description of the image

d)

Not used with image tag

64.

Which of the following is the code for a paragraph to be blue?

a)

<td style=“background-color:blue;”>

b)

<h1 style=“font-size:60px;”>

c)

<p style=“color:blue;”>

d)

<tagname style=“property:value;”>

65.

What is the font size in this code: <p style=“color:blue; background-color:yellow;

font-size:60px”>Hello</p>

a)

20pixles

b)

40pixels

c)

50pixels

d)

60pixels

66.
which tag will create the largest heading
a)
<h6>
b)
<h4>
c)
<h2>
d)
<h3>
67.

Which of the following codes would create a horizontal line

a)

<br>

b)

<h1></h1>

c)

<hr>

d)

<p>

68.

Which of the listed heading tags creates the largest heading?

a)

H2

b)

H3

c)

H4

d)

H6

69.

HTML coding involves using ____________ to create webpages.

a)

Tabs

b)

Tags

c)

Labels

d)

Quotes

70.

HTML stands for...

a)

Hyper Text Markup Language

b)

High Tech MachineLanguage

c)

High Tech Modem Language

d)

Hyper Tech Markup Lexicon

71.

This coding is used to create a paragraph:

a)

<pr></pr>

b)

<p></p>

c)

<para></para>

d)

<par></par>

72.

Which is the correct HTML tag for creating an unordered list?

a)

<ul>

b)

<uline>

c)

<u>

d)

<under>

73.

Which tag would you use to make a heading?

a)

<heading></heading>

b)

<bigger></bigger>

c)

<h></h1>

d)

<h1></h1>

74.
HTML tags are always surrounded by
a)
( )
b)
{ }
c)
< >   
d)
"  "
75.

Which tag pair is used to create the largest heading?

a)

<h1></h1>

b)

<h9></h9>

c)

<h type = "largest"></h>

d)

<h6> </h6>

76.

The beginning tag works like the "on" switch and the ending tag works like the "off" switch.

a)

True

b)

False

77.

Everything visible on a web page goes between these two tags.

a)

<body> </body>

b)

<title> </title>

c)

<header> </header>

d)

None of the Above

78.

Which of the following creates the smallest header?

a)

<H2><./H2>

b)

<H3></H3>

c)

<H4></H4>

d)

<H6></H6>

79.

Website Content is the text, images, and other elements included in a web page.

a)

True

b)

False

80.

When coding an ordered or unordered list, each separate item in the list uses this tag:

a)

<li></li>

b)

<list></list>

c)

<item></item>

81.

Which of these is another name for a web page address?

a)

CSS

b)

JAVA

c)

URL

d)

CNN

82.

More than 90 percent of websites on the Internet are coded using HTML.

a)

True

b)

False

83.

The universally accepted name for the first page on a website is

a)

home.html

b)

index.html

c)

first.html

84.

Which of the following pieces of code will create a horizontal line across the page?

a)

<hr>

b)

<line>

c)

<p>

d)

<grid>

85.

It is a global network of billions of computers and other electronic devices.

a)

search engine

b)

internet

c)

web browser

d)

all of the above

86.

What is metadata?

a)

Data that is encrypted for security

b)

Data that is stored in a database

c)

Data that provides information about other data

d)

Data that is used to manipulate other data

87.

What are the different types of metadata?

a)

cultural metadata

b)

experiential metadata

c)

descriptive metadata, structural metadata, administrative metadata, and preservation metadata

d)

technical metadata

88.

What is the role of metadata in search engines?

a)

Metadata in search engines helps improve website design.

b)

Metadata in search engines determines the ranking of web pages.

c)

Metadata in search engines provides information about web pages.

d)

Metadata in search engines is used for advertising purposes.

89.

How can metadata be used to organize and categorize information?

a)

By encrypting the data

b)

By deleting unnecessary information

c)

By providing descriptive information about the data

d)

By compressing the data

90.

gathering and measuring information on targeted variables in order to answer questions and evaluate outcomes

a)

data collection

b)

collaboration

c)

unstructured data

d)

big data

91.

What is a web browser?

a)

A type of search engine

b)

A type of website

c)

A type of software

d)

A type of computer

92.

What is this type of computer?

a)

Desktop

b)

Laptop

c)

Tablet

d)

Games Console

93.

What is this type of computer?

a)

Desktop

b)

Laptop

c)

Tablet

d)

Games Console

94.

An example of computer hardware is...

a)

Web browser

b)

Keyboard

c)

App

d)

Operating system

95.

example of computer software is...

a)

Operating system

b)

Mouse

c)

CPU

d)

Monitor

96.

One benefit of a laptop is...

a)

More portable than a desktop

b)

Can be easily upgraded

c)

Generally cheaper than a desktop

97.

One benefit of a tablet is...

a)

Requires a power source

b)

May not have as many functions as a laptop or desktop

c)

Extremely portable

98.

One drawback of a tablet...

a)

Requires a power source

b)

May not have as many functions as a laptop or desktop

c)

Extremely portable

99.

Computer _____________ is a set of instructions that tells a computer what to do or how to perform a task.

a)

Hardware

b)

Software

c)

Malware

100.

How are images manipulated in the media?

a)

Airbrushing and editing

b)

Lighting

c)

touch ups

d)

all