Year 9 Exam

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 10

Learn the following HTML

Example: Basic html structure to create a web page. <!DOCTYPE html> <html> <head> <title>Title of document goes here</title> </head> <body> Identifies where content will start on the page <p>start a paragraph</p> </body> </html>

Learn <a>, <img src>, <bgcolor>


Example: <a href>links to another website</a> <img src=inserts a picture" height="42" width="42"> height and width refer to pixel height. Think about your game maker sprites 32x32px <body bgcolor="#AFDCEC">

Learn <ol>, <ul>, <li>


Example:
<ol>ordered list (numbered items)</ol> <ul>unordered list (bullet points)</ul> <ol><li>lists an item</li></ol>

Learn <b>, <u>, </div>


Example:
<b>bold</b> <u>underline</u> <div id>used for group codings</div> <img style=using images" src="images/apple.jpg" height="200" width="200">

Learn <table><tr><td>
You need to know what these do and you need to be able to show how a table would be displayed on a web page.
<table border="10"> <tr> <td colspan="3">table heading goes here</td> </tr> <tr> <td>1</td><td>first left column</td><td>first right column</td></tr> <tr><td>2</td><td>second left column</td><td>second right column</td></tr> <tr><td>3</td><td>third left column</td><td>third right column</td></tr> </table>
Could you draw this after reading the previous code?

Learn Computer Output Devices


Printer Headphones Monitor Projector Speakers Think about devices that export from the computer

Learn Binary to Decimal


Remember this table and put the binary code (01001010) in the appropriate column.
128 64 32 16 8 4 2 1

Example of working: 64+8+2=74

Learn Decimal to Binary


Remember this table and put the decimal (158) in the appropriate column.
128 1 64 0 32 0 16 1 8 1 4 1 2 1 1 0

Example of working out: 158-128=30 30-16=14 14-8=6 6-4=2 2-2=0

Final Answer=10011110

Learn Motherboard Components


CPU (central processing unit) RAM Video Card Sound Card Network Card

Learn Game Maker Topics


Revise the following: Events and actions. Movement codes (-x, -y), (x, y) (obj_player.x, obj_player.y) Variable codes Menu icons

You might also like