PROGRAMMING Flashcards

(34 cards)

1
Q

also called numeral system.

A

Number System

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

any notation that represents numerals or numbers

A

Number System

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

4 types of number system

A

Decimal
Binary
Octal
Hexadecimal

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

most common number system we have ever known and the basis of how we count.

A

DECIMAL

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

has a base or radix of 10.

symbols used are the numbers 0-9.

A

DECIMAL

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

considered as the computer machine language.

A

BINARY

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

has a base or radix of 2.

using only the symbols 0 and 1.

A

BINARY

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

result in simplifying the representation of characters in programming a computer.

A

OCTAL

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

has a base or radix of 8.

symbols used are the numbers 0-7

A

OCTAL

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

spin off from the octal system

A

HEXADECIMAL

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

has a base or radix of 16.

A

HEXADECIMAL

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

what is ASCII stands for?

A

American Standard Code for Information Interchange

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

Represent a total of 255 characters.

A

ASCII TABLE

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

ASCII NUMBER OF A & Z?

A

A- 65
Z- 90

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

WHAT IS THE BINARY OF ‘S’? AND ITS ASCII NO.

A

1010011
83

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

WHAT IS THE BINARY OF ‘T’? AND ITS ASCII NO.

17
Q

WHAT IS THE ASCII NO. OF 1011000, AND THE CHARACTER

18
Q

WHAT IS THE ASCII NO. OF 1001110, AND THE CHARACTER

19
Q

WHAT IS THE BINARY OF ‘W’? AND ITS ASCII NO.

20
Q

1110111
+1010111

and its
decimal, octal, hexadecimal

A

11001110

206
316
CE

21
Q

111111
100101
+111111

and its
decimal, octal, hexadecimal

A

10100011

163
243
A3

22
Q

101001
-100111

and its
decimal, octal, hexadecimal

23
Q

1110001010
-1001010111

and its
decimal, octal, hexadecimal

A

100110011

307
463
133

24
Q

11111
*10111

and its
decimal, octal, hexadecimal

A

1011001001

713
1311
2C9

25
111011 *111011 and its decimal, octal, hexadecimal
110110011001 3481 6631 D99
26
convert this Decimal to binary, octal, hexadecimal 2687
101001111111 5177 A7F
27
convert this Decimal to binary, octal, hexadecimal 487
111100111 747 1E7
28
convert this Decimal to binary, octal, hexadecimal 569
1000111001 1071 239
29
convert this Decimal to binary, octal, hexadecimal 789
1100010101 1425 315
30
convert this octal to binary, decimal, hexadecimal 513
101001011 331 14B
31
convert this octal to decimal, binary, hexadecimal 1563
1101110011 883 373
32
convert this hexadecimal to decimal, binary, octal 56B
10101101011 1387 2553
33
convert this hexadecimal to decimal, binary, octal A61
101001100001 2657 5141
34