binary shifts

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

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

define binary shift.

a binary shift is how a computer system performs basic multiplication and division by moving binary digits left or right a set number of time.

2
New cards

what does a left shift do?

a left shift multiplies a binary number by 2 (for every 1 place shift).

3
New cards

true or false?

a right shift divides a binary number by 2.

true.

4
New cards

what is the definition of overflow error?

an overflow error occurs when a result is too large to be represented in the available storage space (needs more bits).

5
New cards

define underflow error.

an underflow error occurs when a result is too small to be represented in the available storage space.

6
New cards

state the equation in terms of X for a left shift of 2 places.

X << 2 (X shifted left by 2 places) = X * 4

7
New cards

true or false?

a left shift of 3 places multiples the binary number by 8.

true.

8
New cards

in binary shifts, what is the definition of precision?

in binary shifts, precision refers to the number of digits used to represent a value.

9
New cards

define bit.

a bit is a basic unit of information in computing, representing either a 0 or 1.

10
New cards

what does binary multiplication mean?

binary multiplication refers to the process of multiplying binary numbers using shifts and additions.