wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

class 7

Total questions: 71

Worksheet time: 37mins

Name
Class
Date
1.
What does HTML stand for?
a)
Hypertext Making Language
b)
Hyper Transfer Markup Language
c)
Hypertext Markup Language
d)
Hyper Transfer Making Language
2.
HTML Language uses
a)
Tabs
b)
Tags
c)
Punctuation
d)
Quotations
3.
A <tag>
a)
Is used to divide sections
b)
Is not needed in HTML
c)
Tells the browser how to format our content
d)
Is part of the title line in HTML
4.
<h> is
a)
Header Tag
b)
Headline Tag
c)
Half of a tag
d)
Closing header tag
5.
<style>
a)
Found at top of styling options
b)
Allows a heading to be written
c)
Allows the body to be written
d)
Allows attributes to be included
6.
What does HTML stand for?
a)
Hypertext Making Language
b)
Hyper Transfer Markup Language
c)
Hypertext Markup Language
d)
Hyper Transfer Making Language
7.
HTML Language uses
a)
Tabs
b)
Tags
c)
Punctuation
d)
Quotations
8.
A <tag>
a)
Is used to divide sections
b)
Is not needed in HTML
c)
Tells the browser how to format our content
d)
Is part of the title line in HTML
9.
<h> is
a)
Header Tag
b)
Headline Tag
c)
Half of a tag
d)
Closing header tag
10.
</h> is
a)
Header Tag
b)
Headline Tag
c)
Half of a tag
d)
Closing header tag
11.
New heading tags can be added by using;
a)
Letters (ie: ha; hb)
b)
Numbers (i.e: h1; h2)
c)
Quotations (ie: h'; h")
d)
You can't do this
12.
<p> is
a)
punctuation tag
b)
closing paragraph tag
c)
closing punctuation tag
d)
paragraph tag
13.
</p> is
a)
punctuation tag
b)
closing paragraph tag
c)
closing punctuation tag
d)
paragraph tag
14.
An attribute is a; 
a)
Applies changes to everything
b)
Different options for each tab
c)
Allows for no changes to the site
d)
Gives structure and text
15.
Style tags are used to;
a)
Apply style to one line
b)
Not used in HTML
c)
Used at the top of the page to apply a style to the entire document
d)
Used sparingly
16.
<style>
a)
Found at top of styling options
b)
Allows a heading to be written
c)
Allows the body to be written
d)
Allows attributes to be included
17.
</style>
a)
Found at the bottom of styling options
b)
Allows a heading to be written
c)
Allows the body to be written
d)
Allows attributes to be included
18.
Body tags are used;
a)
Used for only the header
b)
Used only for the paragraph
c)
element that wraps everything that is visible on the page.
d)
Not used in HTML
19.
<body>
a)
Body tag
b)
Paragraph tag
c)
Closing body tag
d)
Header tag
20.
</body>
a)
Body tag
b)
Paragraph tag
c)
Closing body tag
d)
Header tag
21.
A Header;
a)
Must include your name
b)
First Line of your code
c)
Found at bottom of your code
d)
Not needed in HTML
22.
<html>
a)
Gives you structure and text
b)
Not needed when creating HTML sites
c)
Goes after the <h1>
d)
Goes after the <body>
23.
</html>
a)
Found after </h1>
b)
Found after </style>
c)
Found after </body>
d)
Found at bottom of written code
24.
[Square brackets are used to define];
a)
An input attribute
b)
An export attribute
c)
A Function
d)
A Variable
25.
<img> tag finds;
a)
finds the image located at the a URL and the src attribute and then displays it.
b)
finds the image located at the SRC in the URL attribute and then displays it.
c)
Adds a cool picture
d)
Does not work in HTML coding
26.

Which of the following types of computer languages uses binary code to communicate with the computer?

a)

High-level languages

b)

Assembly languages

c)

Machine language

d)

Database languages

27.
What is python?
a)
a programming language 
b)
DTP software 
c)
Spreadsheet software
d)
Computer 
28.
What extension must you add to the end of a file when saving?
a)
.xlsx
b)
.pptx
c)
.docx
d)
.py
29.
What symbol do you use to make a comment in Python?
a)
@
b)
¬
c)
;
d)
#
30.
What button do you press to compile (run) your program so that it runs in the shell?
a)
F3
b)
F5
c)
F7
d)
F9
31.
What will the output be from the following code?
print(3*4+5)
a)
27
b)
17
c)
12
d)
SyntaxError
32.
What is the correct definition for a VARIABLE?
a)
a changeable value, such as a score in a computer game.
b)
a value that cannot be changed
33.

A syntax error means your code has a 'grammar' mistake or you used symbols/operations incorrectly.

a)

True

b)

False

34.
What is the word (command) used to display numbers and text on the screen?
a)
print
b)
input
c)
output
d)
command
35.
What is a variable?
a)
A box(memory location) where you store values
b)
a type of graphics
c)
Data type
d)
a type of memory
36.
What symbol is used in python to assign values to a variable?
a)
equals =
b)
plus + 
c)
forward slash /
d)
asterisk *
37.

What will be the output?

name = "Dave"

print (name)

a)

Dave

b)

'Dave'

c)

name

d)

(name)

38.
What Python command lets the user enter an answer to a question?
a)
answer()
b)
open()
c)
print()
d)
input()
39.
Which statement correctly assigns the string "Tanner" to the variable name?
a)
name  = print( "Tanner")
b)
input("Tanner")
c)
name = "Tanner"
d)
name = input("Tanner")
40.

Is python an interpreter or compiler programming language?

a)

Compiler

b)

Interpreter

41.

Python correct naming convention for constants is?

a)

firstName

b)

First_Name

c)

FIRST_NAME

d)

firstname

42.

Python correct naming convention for variables is?

a)

new_user25

b)

NewUser25

c)

25_new_user

d)

25NewUser

e)

NEWUSER25

43.

What result will display in the shell if 15 and 20 is entered by the user?

a)

"num1 + num2"

b)

1520

c)

35

44.
The number or word we give to a variable
a)
Value
b)
Bug
c)
Information
d)
Text
45.
In the following code, "city" is an example of a what?
a)
List
b)
Loop
c)
Variable
d)
Array
46.

What is the answer to this expression, 22%3 is

a)

7

b)

1

c)

0

d)

5

47.

Which one of theses is floor division

a)

/

b)

//

c)

%

d)

None of theses

48.

What is the output of this expression, 3*1**3

a)

27

b)

9

c)

3

d)

1

49.

Which of the following is an invalid variable?

a)

my_string_1

b)

1st_string

c)

foo

d)

-

50.

True or False:

5.0 is an example of the 'float' datatype.

a)

True

b)

False

51.

What is an integer?

a)

A number with a decimal point.

b)

A whole number.

c)

An array of characters.

d)

A single character.

52.

Q2. It is sharing a file with one or more users through the internet.

a)

cloud

b)

online sharing

c)

google drive

d)

one drive

53.

Q4. Google provides __________ GB of free online storage.

a)

10

b)

15

c)

30

d)

100

54.

A5. The storage capacity of Google Drive can be increased from _______________.

a)

10 GB to 30 GB

b)

15 GB to 30 GB

c)

100 GB to 30 TB

d)

100 GB to 15 TB

55.

Q6. Identify the icon

a)

google

b)

Mozilla

c)

google chrome

d)

internet

56.

Q7. Name the icon

a)

one drive

b)

SkyDrive

c)

Google

d)

Google Drive

57.

Q8. It gives various types of geographical information.

a)

GPS

b)

Maps

c)

Drive

d)

location

58.

Q9. OneDrive is a free online storage service provided by

a)

Microsoft

b)

Google

c)

Yahoo

d)

MAC

59.

A tweet is restricted upto __________ charaters

a)

120

b)

140

c)

150

d)

130

60.

Messages sent and received on twitter are known as ____________

a)

posts

b)

updates

c)

tweets

d)

message

61.

Mark Zuckerberg is the founder of _____________

a)

Facebook

b)

twitter

c)

blog

d)

google drive

62.

Change the border size of the body or image

a)

border-style

b)

border-width

c)

border-color

d)

width

63.

Set the color of the border

a)

border-style

b)

border-width

c)

border-color

d)

width

64.

Which selector will change the font of the text?

a)

font-size

b)

text-align

c)

font-famiy

d)

text-decoration

65.

Which rule set would change the font size to 24?

a)

font-size: 24

b)

size: 24;

c)

font-size: 24;

d)

font size: 24;

66.

This is a picture of a ____.

a)

CSS Rule

b)

HTML Rule

c)

Tags

d)

Coding

67.

The blue is called an _____________

a)

Declaration

b)

Selector

c)

Property

d)

Value

68.

CSS is the...

a)

language for designing web pages

b)

longitudinal compass for directions

c)

way we send information to each computer

d)

way we set up each tag

69.
Which is correct CSS syntax? 
a)
{ body; color=black;}
b)
body: color= black
c)
body {color:black;}
d)
(body color is black) 
70.
What symbols go around the properties for each CSS selector?
a)
< >
b)
[ ]
c)
{ }
d)
( )
71.
Which is the value in this CSS?
p {color: red;}
a)
p
b)
color
c)
red