Number Bases Notes Flashcards

1
Q

Binary, base…?

A

2

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

Octal base..?

A

8

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

Decimal base…?

A

10

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

Hexadecimal base…?

A

16

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

Time base…?

A

60 and 12

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

Dozens base..?

A

12

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

Feet and Inches (American) base…?

A

12

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

Weeks Base…?

A

7

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

Binary table…?

A

16, 8, 4, 2, 1, (DECIMALS) 0.5, 0.25, 0.125

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

Name some companies that have adapted the unicode standard…?

A

including Adobe Systems, Apple, Google, IBM, Microsoft, Oracle Corporation, Sun Microsystems, and Yahoo!

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

State two major advantages that Unicode has over earlier systems of coding characters…?

A

(Can’t find)

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

What is the latest version of Unicode…?

A

Unicode 6.2.0

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

How many characters are in the standard ASCII character set…?

A

127

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

What is extended ASCII? how many additional characters are there…?

A

The term extended ASCII (or high ASCII) describes eight-bit or larger character encodings that include the standard seven-bit ASCII characters as well as others. The use of the term is sometimes criticized, because it can be mistakenly interpreted that the ASCII standard has been updated to include more than 128 characters or that the term unambiguously identifies a single encoding, both of which are untrue. (128)

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

What computers use EBCDIC….?

A

used mainly on IBM mainframe and IBM midrange computer operating systems.

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

Disadvantages of EBCDIC…?

A

EBCDIC only allows machines to process English and one other language and writes characters from left to right in every language, rather than from right to left as seen in Arabic languages.

is that the value they represent may not be exact, and so it is possible to get 24.999999 rather than 25. There are various standards for the numbers, but there are also many variations that are platform dependent.

17
Q

Advantages of EBCDIC…?

A

EBCDIC is advantageous because it consists of an 8-bit character language rather than the old 6-bit character language found on punch card encoding systems. This allows EBCDIC to provide IBM machines with support for a wide variety of functions that punch card encoding systems did not provide.

is that digits (0, 1, etc.) can be converted into numbers (0, 1, …) by masking off the upper four bits of their EBCDIC codes, without doing any table lookup or arithmetic. For example, the EBCDIC code for 3 is hexadecimal F3, binary 11110011, and the binary number 3 is 00000011.

18
Q

Finding One’s complement of binary…?

1011

A

Switch the Ones and Zero’s around.

so 1011=0100

19
Q

Finding Twos complement of binary…?

1011

A

Switch the Ones and Zero’s around and find the One’s complement.
so 1011=0100
Find Twos complement by adding 1 to the Ones complement.
1011=0101