Computer Science Y8 Flashcards

1
Q

What does HTML stand for?

A

Hypertext Markup Language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are websites made from?

A

Tags

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How many different size heading tag are there?

A

6

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is an opening tag?

A

<h1>
</h1>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a closing tab?

A

</h1>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does CSS stand for?

A

Cascading Style Sheet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the tags for a unordered list?

A

<ul>
<li> </li>
<li> </li>
</ul>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the tags use for an ordered list?

A

<ol>
<li> </li>
<li> </li>
</ol>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you change the colour of a heading using a tag?

A

<h1 style=“color:red;”>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is data?

A

Pieces of information formatted in a special way

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What language does the computer use to store, communicate and process data?

A

Binary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Name an example of a binary bit

A

1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Why does the binary code system only use 1s and 0s?

A

Because the computer inside the wires carry electricity which can only be on (1) or off (0)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is Denary (Decimal) Number System

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is binary?

A

This is the number system the computers use. We have the choice of 2 digits which is a 0 or 1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are the different types of binary?

A

0=bit
0001=nibble
00011010=byte

17
Q

What table is use to make binary code?

A

1 2 4 8 16 32 64 128
0 1 0 0 1 0 0 0

18
Q

What number is shown here?
1 2 4 8 16 32 64 128
1 1 0 0 1 1 0 0

A

51

19
Q

What is an attribute in Computing?

A

A changeable property or characteristic of some component of a program that can be set to different values.

20
Q

How do you make your words italic using tags?

A

<em> Word </em>

21
Q

What does ASCII for in Computing?

A

American Standard Code for Information Interchange

22
Q

Convert this ASCII into Binary, 104.

A

ASCII = 104 (H)

1 2 4 8 16 32 64 128
0 0 0 1 0 1 1 0