You are on page 1of 5

VIETNAM AUSTRALIA INTERNATIONAL SCHOOL

ICT BASELINE

Grade 8 2018 - 2019


35 minutes

Name: ………………………………………………….

Class: …………………………………………………

Date: …………………………………………………...

Teacher: ………………………………………………

Score …………………. /31

1
Where you have multiple choice options, circle the correct answer.

1. (1 point) Look at the spreadsheet below.

What feature could be added to cell C16 so that it will change colour depending on whether
the list is within budget?

a Data Filter c Macro


b Conditional Formatting d Goal Seek

2. (1 point) Which is The Excel operator for division

a / c %
b \ d ^

3. (1 point) In the spreadsheet below, what feature has been added to cell C1?

a Drop down verification c Drop down validation


b VLOOKUP d Conditional Checklist

2
4. (1 point) What does HTML stand for?
a Hyper Throttle Manly Language c How to make language
b Hypertext Markup Language d How to move language

5. (1 point) What are the four tags needed in a website?


a <html>, <head>, <title>, <body> c <html>, <eyes>, <title>, <leg>
b <html>, <foot>, <arm>, <body> d <ltmh>, <p>, <a>, <body>

6. (1 point) Which tag defines the biggest heading?


a <h1> c <h1-biggest>
b <h6> d <g6-biggest>

7. (1 point) Which
is the correct HTML to insert an image called “cats.jpeg” into a webpage, with
the text “Some cats” appearing if the image cannot load?
a <img src="cats.jpeg" alt="Some cats"> c <image src="cats.jpeg" alt="Some cats">
b <img src="cats.jpeg">Some cats</img> d <image src="cats.jpeg">Some cats</img>

8. (1 point) What attribute does an <a> tag need to link to another page?
a <a color=" "> c <a href=" ">
b <a type=" "> d <a width=" ">

9. (1 point) Which tag is not used when creating a table?


a <table> c <td>
b <tb> d <tr>

10. (1 point) How can you make a bulleted list?


a <dl> c <list>
b <ol> d <ul>

11. (1 point) What is the correct HTML for creating a hyperlink?

a <a url="http://www.w3schools.com">W3Schools.com</a>
b <a href="http://www.w3schools.com">W3Schools</a>
c <a>http://www.w3schools.com</a>
d <a name="http://www.w3schools.com">W3Schools.com</a>

12. (1 point) How can you make a numbered list?


a <ol> c <ul>
b <dl> d <list>

13. (1 point) The title tag is placed in which section?


a head c h1
b body d h2

3
Table 1: HTML Color Codes

#FFFFFF #000000 #00FF00

14. (1 point) The above colour codes in Table 1 are written using which type of code?
a Binary c Hexademical
b Decimal d Denary

15. (1 point) In Image Manipulation, a _______ stores image data in the form of pixels.

a Vector b Bitmap

16. (1 point) In Image Manipulation, a _______ stores image data in the form of lines connecting
points.

a Vector b Bitmap

17. (1 point) In Image Manipulation, a _______ can be enlarged without losing image quality.
a Vector b Bitmap

18. (1 point) In Image Manipulation, a _______ image is best for photographs/natural colours.
a Vector b Bitmap

Code Listing 1:
Python Programming
Examine the following code:
____________________________________________________________________
secret_number=6
guesses=3
while guesses>0:
print("Can you guess what number I am thinking?")
guess=int(input("write a number"))
  if guess==secret_number:
print("Well done, you guessed correctly!")
       break
    else:
   guesses=guesses-1
if guesses==0:
print("You have no guesses left!")
____________________________________________________________________

19. (1 point) In Python Code Listing 1. how many loops does the code contain?

a 1 c 4
b 2 d None

20. (1 point) In Python Code Listing 1, how many conditional branches does the program contain?

a 3 c 2
b 4 d None

4
21. (1 point) In Python Code Listing 1, how many lines of code contain an output statement?

a 5 c 6
b 4 d 3

Match the html tags with their definitions


a <b> f <tr>
b <u> g <td>
c <i> h <th>
d <br> i <img>
e <p> j <a>
22. (1 point) New Paragraph = ____________________________

23. (1 point) Anchor/Hyperlink = ____________________________

24. (1 point) add an image = ____________________________

25. (1 point) New Line = ____________________________

26. (1 point) Italize text= ____________________________

27. (1 point) Table data = ____________________________

28. (1 point) Table header = ____________________________

29. (1 point) Underline text = ____________________________

30. (1 point) Bold text = ____________________________

31. (1 point) Table row = ____________________________

You might also like