Chapter 2: Binary Values and Number Systems (Conversions)

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

1/18

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key concepts from Chapter 2: Binary Values and Number Systems (Conversion basics).

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

Base (radix)

The base is the number of digits in a numbering system and determines the value of digit positions; digits range from 0 to base−1.

2
New cards

Base 2 (Binary)

A numbering system that uses only digits 0 and 1; each position represents a power of two.

3
New cards

Base 10 (Decimal)

The standard numbering system using digits 0–9; each position represents a power of ten.

4
New cards

Subscript indicating base

A small base indicator after a number (e.g., 1012) showing which base the number is written in.

5
New cards

Positional notation

A system where a digit's value depends on its position; value = sum of digit_i × base^i.

6
New cards

Natural numbers

Non-negative integers: 0 and all positive integers.

7
New cards

Negative numbers

Numbers less than zero.

8
New cards

Integers

Whole numbers with no fractional part; includes zero, positives, and negatives.

9
New cards

Rational numbers

Numbers expressible as a ratio of two integers (a/b, b ≠ 0); decimals may terminate or repeat.

10
New cards

Digit

A symbol representing a value in a given base; digits range from 0 to base−1.

11
New cards

Bit

A binary digit; a bit is either 0 or 1.

12
New cards

Byte

A group of eight bits.

13
New cards

Exponent

The power to which the base is raised in a positional value.

14
New cards

Division remainder method

Method to convert decimal to binary by repeatedly dividing by 2 and collecting remainders; read remainders bottom-up.

15
New cards

Chart method (powers of two)

Method to convert decimal to binary using a powers-of-two chart; select largest 2^k ≤ n and set corresponding bit to 1, filling gaps with zeros.

16
New cards

Binary to decimal conversion

Converting a base-2 number to base-10 using positional notation (sum of bit_i × 2^i).

17
New cards

Powers of two relationship to bases

Bases that are powers of two (e.g., 2, 8=2^3, 16=2^4) have straightforward mappings to binary.

18
New cards

Verification by positional notation

You can verify conversions by converting back using positional notation to ensure consistency.

19
New cards