C_Systems CH. 1 & 3 (INTRO | INFO REP) Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

R.A.M

A

Random Access Memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Digital

A

SET # of positions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Analog

A

Infinite # of positions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Binary

A

Only TWO # of Positions (IE: On or Off | 1 0r 0)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

BIT

A

Single Binary Digit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

BYTE

A

Eight Bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

NIBBLE

A

Four Bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

WORD

A

Refers to HOW much DATA a computer can process in a single step.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Low Order / Least Sig.

A

RIGHT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

High Order / Most Sig.

A

LEFT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How Big Can We Get? **Formula (Determine smallest, highest and number of possible values for N amount of bits)

A

n = # of bits | 0 = smallest value | 2^n -1 highest value | 2^n = # of values possible

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Convert NEG. Twos Comp.

A

Add all 0 places and add 1 | I.E: 10011110 –> 1+32+64 = 97 + 1 –> 98 = -98

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

OverFlow (V)

A

when two numbers w/ SAME sign added and results in OPPOSITE sign

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Logical Ops ( AND | OR )

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Arithmetic Shift Left

A

Old leftmost bit moves into the carry bit

New right most bit is a 0

DOUBLES the number

I.E: 00111010 –> 01110100

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Arithmetic Shift Right (ASR)

A

Right most bit shifted into the carry bit

Left most bit is repeated

DIVIDES by two

I.E: 01101111 –> 00110111

17
Q

BITWise OPS

A

<< - ASL

>>- ASR

~ - NOT

& - Bitwise AND

- Bitwise OR

18
Q
A