Computer Science Number Systems and Binary Arithmetic

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/12

flashcard set

Earn XP

Description and Tags

Vocabulary and fundamental concepts covering binary, denary, and hexadecimal number system conversions, hexadecimal applications, and binary addition rules.

Last updated 1:48 PM on 9/15/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

Binary Representation of Denary 128

The denary number 128 converted to binary is 10000000210000000_2.

2
New cards

Binary Representation of Denary 250

The denary number 250 converted to binary is 11111010211111010_2.

3
New cards

Hexadecimal Values for 10 through 15

In hexadecimal notation, denary values 10 through 15 are represented by letters A (10), B (11), C (12), D (13), E (14), and F (15).

4
New cards

Hexadecimal 1A to Denary Conversion

Hexadecimal 1A equals denary 26, calculated as (1×16)+(10×1)=16+10=26(1 \times 16) + (10 \times 1) = 16 + 10 = 26.

5
New cards

Hexadecimal FF to Denary Conversion

Hexadecimal FF equals denary 255, calculated as (15×16)+(15×1)=240+15=255(15 \times 16) + (15 \times 1) = 240 + 15 = 255.

6
New cards

Binary 11110000211110000_2 to Hexadecimal Conversion

The binary value 11110000211110000_2 converted to hexadecimal is F016\text{F0}_{16}.

7
New cards

Hexadecimal 3C to Binary Conversion

The hexadecimal number 3C converted to binary is 00111100200111100_2.

8
New cards

Four Uses of Hexadecimal System

The four uses of the hexadecimal system are Error codes, MAC addresses, IPv6 addresses, and HTML colour codes.

9
New cards

Error Codes

Codes that refer to the memory location of the code and are usually automatically generated by computers.

10
New cards

Media Access Control (MAC) Address

A number which uniquely identifies a device on a network, made up of 48 bits shown as six groups of hexadecimal digits (e.g., 00-1C-B3-4F-25-FF).

11
New cards

Binary Addition Rule for 1+11 + 1

The result of 1+11 + 1 in binary addition is 10210_2 (write 0, carry 1).

12
New cards

Binary Addition Rule for 1+1+11 + 1 + 1

The result of 1+1+11 + 1 + 1 in binary addition is 11211_2 (write 1, carry 1).

13
New cards

Binary Addition of 00011101200011101_2 and 01100110201100110_2

The sum of binary numbers 000111012+01100110200011101_2 + 01100110_2 is equal to 10000011210000011_2.