C_Systems CH. 4 ( Architecture ) Flashcards

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

CONVERT between BASES *Tip

A

Let N be the dec. # to convert from dec to base R

while ( n > 0 )
{
output digit n % r  (fr: right to left)
 n = n / R (integer division)
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

ASCII

A

Am. StandardCode for Info Interchange

Used to encode characters into comps.

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