Computer Science Y8 Flashcards
What does HTML stand for?
Hypertext Markup Language
What are websites made from?
Tags
How many different size heading tag are there?
6
What is an opening tag?
<h1>
</h1>
What is a closing tab?
</h1>
What does CSS stand for?
Cascading Style Sheet
What are the tags for a unordered list?
<ul>
<li> </li>
<li> </li>
</ul>
What are the tags use for an ordered list?
<ol>
<li> </li>
<li> </li>
</ol>
How do you change the colour of a heading using a tag?
<h1 style=“color:red;”>
What is data?
Pieces of information formatted in a special way
What language does the computer use to store, communicate and process data?
Binary
Name an example of a binary bit
1
Why does the binary code system only use 1s and 0s?
Because the computer inside the wires carry electricity which can only be on (1) or off (0)
What is Denary (Decimal) Number System
This is the number system we , as humans , use. We have the choice of 10 digits. Which are as follows: 0,1,2,3,4,5,9
What is binary?
This is the number system the computers use. We have the choice of 2 digits which is a 0 or 1.
What are the different types of binary?
0=bit
0001=nibble
00011010=byte
What table is use to make binary code?
1 2 4 8 16 32 64 128
0 1 0 0 1 0 0 0
What number is shown here?
1 2 4 8 16 32 64 128
1 1 0 0 1 1 0 0
51
What is an attribute in Computing?
A changeable property or characteristic of some component of a program that can be set to different values.
How do you make your words italic using tags?
<em> Word </em>
What does ASCII for in Computing?
American Standard Code for Information Interchange
Convert this ASCII into Binary, 104.
ASCII = 104 (H)
1 2 4 8 16 32 64 128
0 0 0 1 0 1 1 0