Summer Assessment Revision Flashcards
What does HTML stand for?
Hyper Text Markup Language
What does the following HTML Tag do?
<a href = "https://www.whitchurchhs.wales/"> WHS! </a>
It creates hyperlink to the Whitchurch High School website. The text on the page will say “WHS!”
What HTML tag aligns an element centrally on the web page.
<center>
What does the <b>
tag do?
Sets text to appear bold on the screen.
What tags allow you to set headings of various sizes?
<h1>
- Biggest heading<h2>
<h3>
<h4>
<h5>
<h6>
- Smallest heading
What does the following HTML tag do?
<img src = "cat.jpeg">
Makes an image file called “cat.jpeg” appear in the page.
How can you add alternate text to an image tag?
<img src = "cat.jpeg" alt = "A cat">
What do the <ul>
tags do?
Create an unordered list on the web page. An unordered list looks like a set of bullet points.
What does the HTML tag <ol>
do?
Creates an ordered list on a web page. An ordered list looks like a numbered list.
What is the purpose of the <title>
html tag?
The <title>
HTML tag goes in the <head>
section of the HTML file. The title tags set the text to be displayed in the browser tab.
How do you emphasise text using HTML?
<em>
Tags inside the <em>
tags will appear as italics
What does CSS Stand for and what is its purpose?
Cascading Style Sheets
A CSS file controls the appearance of the website. It can set colours and various other styles.
What does a <table>
HTML tag do?
The <table>
tag creates a table. You can add rows to the table by using <tr>
tags and add data by using <td>
.
How would you set up a CSS rule to change the colour of all the paragraph <p>
text in a document to red
p { color: red; }
This CSS Rule would make all text between <p>
tags red.
How do you set the background colour of a webpage using CSS rules?
body {background-color: green;}
The body tag contains all visible parts of the webpage.
Write a CSS rule to set all <h1>
tags to the colour blue and aligned in the centre
h1 {color: blue;
text-align: center;
}
What is the name of the number system that uses only 2 digits 0 and 1 to represent all numbers?
Binary
Aslo sometimes called Base 2
What is 1 single binary digit called?
A single binary 1 or 0 is called a Bit.
What is a binary number that is made up of 8 bits called?
For example: 00011011
8 bits is called a Byte.
Why do computers use the binary number system?
Compters are made up of tiny switches which can only ever be in two states “on” or “off”. Therefore a computer must interpret everything as either “ons” or “offs” we represent these as 1’s and 0’s.
What is the name for the number system that uses 10 digits (0 1 2 3 4 5 6 7 8 9) to represent numbers?
Denary
Also sometimes called “Base 10” or “decimal”
Use the placeholder values:
128 64 32 16 8 4 2 1
to conver the binary number 1010 to denary.
1010 in binary is the number 10 in denary.
There is a 1 under the 8 position and the 2 position.
Use the placeholder values:
128 64 32 16 8 4 2 1
to conver the binary number 1101 to denary.
1101 in binary is the number 13 in denary
8 + 4 + 1 = 13
Convert the denary number 28 into binary
00011100
16 + 8 + 4 = 28
Convert the binary number 00101001 into denary.
41 in denary
32 + 8 + 1
Click this link to see a truth table for a Logic gate.
What sort of Logic gate is it?
AND Gate
Both inputs need to be on to get an output!
Click this link to see a truth table for a Logic gate.
What sort of Logic gate is it?
OR Gate
Only 1 input needs to be on to get an output
Click this link to see a truth table for a Logic gate.
What sort of Logic gate is it?
NOT Gate
1 becomes a 0. 0 becomes a 1.
How can you make Tracy the turtle move forward 50 steps?
forward(50)
How do you make Tracy turn left or right 90 degrees?
left(90)
right(90)
How do you stop Tracy from drawing a line when she moves across the screen?
penup()
How do you make Tracy draw a line as she moves around the screen?
pendown()
How do you tell Tracy to repeat something 5 times?
for i in range(5):
repeated code goes here!
Write the instructions to draw a square using a loop
for i in range(4):
forward(50)
right(90)
How do you make Tracy run commands faster?
speed(0)
1 - 10 = Slow to fast
0 = Fastest
How do you make Tracy go back without changing the direction she is facing?
backward(50)
How do you make Tracy draw a circle with a radius of 50 pixels?
circle(50)
How do you make Tracy move to a specific co-ordinate on the screen?
For example, x = 100 y = -100
setposition(100,-100)
What instructions would you give to Tracy to draw a rectangle with a width of 100 and height of 50?
for i in range(2):
forward(100)
left(90)
forward(50)
left(90)
How can you change the color of the line Tracy draws from the default black to red?
color (“red”)
How can you make Tracy draw a Hexagon?
for i in range(6):
forward(50)
rigth(60)
how do you create a function for Tracy the turtle?
def function_name():
some code goes here!