Computer Number Systems

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/16

flashcard set

Earn XP

Description and Tags

This set of vocabulary flashcards covers the definitions, characteristics, and conversion principles of computer number systems including Positional, Non-positional, Decimal, Binary, Octal, and Hexadecimal systems.

Last updated 5:47 AM on 7/21/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

17 Terms

1
New cards

Number System

A mathematical notation for representing quantities using a consistent set of symbols (digits) and rules.

2
New cards

Positional system

A system where the value of each digit depends on BOTH the digit AND its position (place) within the number.

3
New cards

Non-positional system

A system where each symbol has a fixed absolute value regardless of where it appears, requiring the sum of all values to find the total.

4
New cards

Base (Radix)

The number of unique digits in a system, which determines positional weights (powers of the base).

5
New cards

Bit

A single binary digit (00 or 11) that serves as the fundamental unit of storage in all digital computers.

6
New cards

Roman Numeral Expansion Rule

The total value is found by adding symbol values left to right; however, if a smaller value appears immediately before a larger value, the smaller is subtracted from the larger (subtractive notation).

7
New cards

Positional Number System Formula

Value=dn×rn+dn1×rn1++d1×r1+d0×r0\text{Value} = d_n \times r^n + d_{n-1} \times r^{n-1} + \dots + d_1 \times r^1 + d_0 \times r^0 where rr is the base and dd is the digit.

8
New cards

Decimal Number System

A base 1010 system using digits 00-99; it serves as the reference point for human base conversions.

9
New cards

Binary Number System

A base 22 system using digits 00 and 11 that corresponds to digital voltage states (high/11 and low/00).

10
New cards

Byte

A data unit consisting of 88 bits, which can represent a maximum decimal value of 255255.

11
New cards

Octal Number System

A base 88 system using digits 00-77 where each digit maps exactly to 33 binary bits.

12
New cards

Hexadecimal Number System

A base 1616 system using digits 00-99 and letters AA-FF (A=10A=10, B=11B=11, C=12C=12, D=13D=13, E=14E=14, F=15F=15).

13
New cards

Nibble

A unit of data consisting of 44 binary bits, equivalent to exactly one hexadecimal digit.

14
New cards

Successive division by 2

The method used for converting decimal integers to binary by recording remainders and reading them from bottom to top.

15
New cards

Successive multiplication by 2

The method used for converting decimal fractions to binary by recording integer carries and reading them from top to bottom.

16
New cards

Binary to Hex shortcut

The process of grouping binary bits in fours from the right and replacing each group with its corresponding hexadecimal digit.

17
New cards

Binary to Octal shortcut

The process of grouping binary bits in threes from the right and replacing each group with its corresponding octal digit.