Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

51.

Convert (547)8 to its decimal equivalent?

Answer»

The Octal sequence (547)g has the decimal equivalent:
(547)8 = 5 × 82 + 4 × 81 + 7 × 80
= 5 × 64 + 4 × 8 + 7 × 1
= 320 + 32 + 7 – (359)10

52.

The ASCII value for numeric 0 is: (a) 32 (b) 91 (c) 48 (d) 65

Answer»

Correct answer is (c) 48

53.

Radix of octal number is: (a) 2 (b) 10 (c) 16 (d) 1

Answer»

Correct answer is (d) 1

54.

In hexadecimal C represents: (a) 11 (b) 0 (c) 12 (d) 15

Answer»

Correct answer is (c) 12

55.

The binary sequence (1101 )2 has the decimal equivalent: (a) (25)10 (b) (15)10 (c) (17)10 (d) (13)10

Answer»

Correct answer is (d) (13)10

56.

Write short note on hexadecimal number system?

Answer»

A hexadecimal number is represented using base 16. Hexadecimal or Hex numbers are used as a shorthand form of binary sequence. This system is used to represent data in a more compact manner. Since 16 symbols are used, 0 to F, the notation is called hexadecimal. The first 10 symbols are the same as in the decimal system, 0 to 9 and the remaining 6 symbols are taken from the first 6 letters of the alphabet sequence, A to F, where A represents 10, B is 11, C is 12, D is 13, E is 14 and F is 15.
 

Eg: The hexadecimal sequence (25)16 has the decimal equivalent:

(25)16 = 2 × 161 + 5 × 160
= 32 + 5 = (37)10

57.

Expansion for ASCII: (a) American School Code for Information Interchange (b) American Standard Code for Information Interchange (c) All Standard Code for Information Interchange (d) American Society Code for Information Interchange

Answer»

(b) American Standard Code for Information Interchange

58.

The most commonly used coding scheme is the: (a) Binary Coded Decimal (b) Extended Binary Coded Decimal Interchange Code (c) Indian Standard Code for Information Interchange (d) American Standard Code for Information Interchange

Answer»

(d) American Standard Code for Information Interchange

59.

How many characters can be handled in Binary Coded Decimal System? (a) 64 (b) 255(c) 256 (d) 128

Answer»

Correct answer is (a) 64

60.

Write the steps for binary to decimal conversion?

Answer»

To convert Binary to Decimal we can use positional notation method.

1. Step 1: Write down the Binary digits and list the powers of 2 from right to left (Positional Notation) 

2. Step 2: For each positional notation written for the digit, now write the equivalent weight. 

3. Step 3: Multiply each digit with its corresponding weight. 

4. Step 4: Add all the values.

61.

For 11012 what is the Hexadecimal equivalent?(a) F (b) E (c) D (d) B

Answer»

D is the Hexadecimal equivalent.

62.

The decimal value of Binary number 10 is ………(a) 101010(b) 2 (c) 100 (d) A

Answer»

The decimal value of Binary number 10 is 2

63.

What are the various ways for Binary representation of signed numbers?

Answer»

1. Signed magnitude representation

2. 1’s complement

3. 2’s complement

64.

Expansion for BCD ……..(a) Binary coded decimal(b) binary complement decimal(c) binary computer decimal(d) binary convert decimal

Answer»

(a) Binary coded decimal

65.

Write short note on ISCII?

Answer»

ISCII is the system of handling the character of Indian local languages. This as a 8-bit coding system. Therefore it can handle 256 (2s) characters. This system is formulated by the department of Electronics in India in the year 1986-88 and recognized by Bureau of Indian Standards (BIS). Now this coding system is integrated with Unicode.

66.

Write a short note on BCD.

Answer»

1. BCD stands for Binary Coded Decimal system.

2. BCD is 26 bit encoding system.

3. IT can handle 64 characters.

67.

Write short note on ISCII.

Answer»

ISCII – Indian Standard Code for Information Interchange (ISCII) is the system of handling the character of Indian local languages. This is a 8 – bit coding system. Therefore it can handle 256 (28) characters. It is recognized by Bureau of Indian Standards (BIS). It is integrated with Unicode.

The supported scripts are: Assamese, Bengali (Bangla), Devanagari, Gujarati, Gurmukhi, Kannada, Malayalam, Oriya, Tamil, and Telugu. ISCII does not encode the writing systems of India based on Arabic, but its writing system switching codes none the less provide for Kashmiri, Sindhi, Urdu, Persian, Pashto and Arabic. The Arabic – based writing systems were subsequently encoded in the PASCII encoding.

ISCII is an 8 – bit encoding. The lower 128 code points are plain ASCII, the upper 128 code points are ISCII – specific. In addition to the code points representing characters, ISCII makes use of a code point with mnemonic ATR that indicates that the following byte contains one of two kinds of information. One set of values changes the writing system until the next writing system indicator or end – of – line.

68.

Write note on binary number system.

Answer»

In Binary Number System, there are only two digits namely 0 and 1. The numbers in the binary system are represented to the base

2. In the Binary Number, the left most bit is the Most Significant Bit (MSB) and the right most bit is the Least Significant Bit (LSB). MSB has largest positional weight and LSB has smallest positional weight.

Example : 1100102

69.

Unicode can handles how many characters?(a) 64 (b) 128 (c) 256 (d) 65536

Answer»

Unicode can handles 65536 characters

70.

What is radix?

Answer»

The base value of a number is also known as the radix.

71.

What is radix of a number system? Give example.

Answer»

The radix refers to the base of a number system: the total number of possible digits. The decimal number system that we all use is base ten, as it has ten distinct digits (0, 1, 2, 3, 4, 5, 6, 7, 8, 9).

Example : Binary system – Radix 2

72.

What is radix of a number system? Give example?

Answer»

A numbering system is a way of representing numbers. The most commonly used numbering system in real life is Decimal number system. Other number systems are Binary, Octal, Hexadecimal number system. Each number system is uniquely identified by its base value or radix. Radix or base is the count of number of digits in each number system. Radix or base is the general idea behind positional numbering system. 

Eg: (123)10 , (547)g , (1001)2 , (25)16

73.

List the encoding systems for characters in memory.

Answer»

1. BCD – Binary Coded Decimal

2. EBCDIC – Extended Binary Coded Decimal Interchange Code 

3. ASCII – American Standard Code for Information Interchange

4. Unicode

5. ISCII – Indian standard code for Information interchange

74.

For 11012 what is the Hexadecimal equivalent? (a) F (b) E (c) D (d) B

Answer»

Correct answer is (c) D

75.

What is the 1 ’s complement of 00100110? (a) 00100110 (b) 11011001(c) 11010001 (d) 00101001

Answer»

Correct answer is (b) 11011001

76.

We cannot find 1’s complement for (28) . State reason.

Answer»

Since it is a positive number. 1 ’s complement will come only for negative number.

77.

List the encoding systems for characters immemory?

Answer»

There are several encoding systems used for computer. 

They are

1. BCD: Binary Coded Decimal. 

2. EBCDIC: Extended Binary Coded Decimal Interchange Code.

3. ASCII: American Standard Code for Information Interchange. 

4. Unicode 

5. ISCII: Indian Standard Code for Information Interchange.

78.

We cannot find 1’s complement for (28)10. State reason ?

Answer»

1’s complement representation is an easier approach to represent signed numbers. This is for negative numbers only. This (28)10 this whole numbers cannot be determined by negative number because the number whose MSB is 1.

79.

The expansion of LSB is: (a) lower significant bit (b) least significant bit (c) lower signed bit (d) least signed bit

Answer»

(b) least significant bit

80.

The expansion of MSB is: (a) most significant bit (b) most signed bit (c) must significant bit (d) must signed bit

Answer»

(a) most significant bit

81.

The simplest method to represent negative binary numbers is called: (a) signed magnitude (b) unsigned magnitude (c) magnitude bit (d) unmagnitude bit

Answer»

Correct answer is (a) signed magnitude

82.

A bit is the short form of: (a) binary data (b) binary digit (c) binary decimal (d) big digit

Answer»

Correct answer is (b) binary digit

83.

How many characters can be handled in Binary Coded Decimal System?(a) 64 (b) 255 (c) 256 (d) 128

Answer»

64 characters can be handled in Binary Coded Decimal System