binary, Boolean logic, Hexadecimal Flashcards

1
Q

What is the binary number system?

A

The binary number system is base 2, using only bits 0 and 1.

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

What is a bit?

A

A bit is a binary digit, which can be either 1 or 0.

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

How many bits are in a byte?

A

There are 8 bits in a byte.

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

What are the binary headings?

A

The binary headings are 128, 64, 32, 16, 8, 4, 2, 1.

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

What is the denary system?

A

The denary system is a number system using base 10.

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

How do you convert binary to denary?

A

Each time a 1 appears in a column, the column value is added to the total.

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

What are the steps for denary to binary conversion?

A
  1. Starting left to right on the binary table. 2. Does 128 go into our number? 3. If no, write a 0 and move onto 64. 4. If yes, write 1 and subtract 128 from the number, then move onto 64 with the new number.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a byte?

A

A byte is a collection of 8 bits.

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

What is a nibble?

A

A nibble is a collection of 4 bits (half a byte).

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

How many bytes are in 1KB?

A

1KB (kilobyte) is 1,000 bytes.

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

How many kilobytes are in 1MB?

A

1MB (megabyte) is 1,000 kilobytes.

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

How many megabytes are in 1GB?

A

1GB (gigabyte) is 1,000 megabytes.

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

How many gigabytes are in 1TB?

A

1TB (terabyte) is 1,000 gigabytes.

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

How do you convert bits to bytes?

A

To convert bits to bytes, divide the number of bits by 8.

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

How do you convert KB to MB?

A

To convert KB to MB, divide the number of KB by 1000.

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

How do you convert MB to KB?

A

To convert MB to KB, multiply the number of MB by 1000.

17
Q

What does the AND operator do?

A

The AND operator returns TRUE if everything compared is true.

18
Q

What does the OR operator do?

A

The OR operator returns TRUE if any one of the comparators is true.

19
Q

What does the NOT operator do?

A

The NOT operator gives the opposite value to true (false) and reverses the condition.

20
Q

What are comparison operators?

A

Comparison operators are symbols used in search criteria, such as >, <, ==, >=, <=, and !=.

21
Q

What is the hexadecimal number system?

A

The hexadecimal number system is a number system with base 16.

22
Q

How do you convert hex to denary?

A

To convert hex to denary, multiply the left-hand digit by 16, then add the units.

23
Q

How do you convert denary to hex?

A

To convert denary to hex, divide the denary number by 16. The number of ‘whole’ 16s that go into the number is the left-hand digit, and the remainder is the right-hand digit.

24
Q

How do you convert hex to binary?

A

To convert hex to binary, split the two hex characters. For example, 4 = 0100 and C = 1100, so 4C = 0100 1100 in binary.