Number Systems / Binary

0.0(0)
studied byStudied by 8 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

flashcard set

Earn XP

Description and Tags

Computer Science Dat rep

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

What letter is used to represent Natural numbers?

2
New cards

What letter is used to represent Integers?

3
New cards

What letter is used to represent Rational numbers?

4
New cards

What is an irrational number?

An irrational number is a real number that cannot be expressed as a fraction of two integers, so it has infinite decimal places.

5
New cards

What is a rational number?

A number that can be expressed as a fraction or ratio.

6
New cards

What is a natural number?

A natural number is a whole, positive number

7
New cards

What is an integer?

A whole number that can be positive, negative, or zero, and does not include fractional or decimal parts.

8
New cards

What is an Order?

A number that represent the position of something in a list.

9
New cards

Give three Reasons Hexadecimal is used.

  • Easier to read and remember than a string of binary digits

  • Quicker to write / type

  • Less chance of error than Binary (as binary is just 1’s and 0’)

  • Takes up less space on a page than binary

10
New cards

How many values can be stored in 8 bits?

128 (2^8)

11
New cards

What’s the largest number that can be stored in 8 bits?

127 (2^8 - 1)

12
New cards

How many bits in a byte?

8

13
New cards

How many bytes in one mebibyte (as a power of 2)?

2^20

14
New cards

What does ASCII stand for?

American Standard Code for Information Interchange

15
New cards

How many bits does ASCII use?

8

16
New cards

How many bits does Unicode use?

16

17
New cards

Name Three Types of Error Detection

  • Parity Bits

  • Checksums

  • Majority Voting

  • Check Digits

18
New cards

Describe how parity bits work

Parity bits are used in error detection by adding an extra bit to a binary string to ensure the total number of 1s is even (even parity) or odd (odd parity). This allows the detection of single-bit errors during data transmission.

19
New cards

What might cause an error to slip through parity bits?

If multiple Bits were to flip

20
New cards

Give three examples of what might cause a transmission error

  • Electrical Interference

  • Power Surges

  • Synchronization Issues

  • Worn Cables / Connectors

21
New cards

How does majority voting work?

Each bit is sent 3 times and whatever number (1 or 0) is more common, that number is assumed to be true.

22
New cards

What is a drawback of majority voting?

It takes much longer to send the signal since each bit has to be sent 3 times.

23
New cards

How does a check digit work?

An extra digit at the end of a datum to check for mistakes in a transmission. This digit can be calculated using an algorithm on the other bits in the datum

24
New cards

How does a checksum work?

The sum of the digits in the datum is sent to be compared with the datum.

25
New cards

What is a drawback of checksums?

Certain errors may cause the same sum to be generated