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.

1.

What do we call the point(decimal) in any hexadecimal number of the form 111.A3?(a) radix(b) hexadecimal point(c) decimal(d) octal pointThe question was asked in a national level competition.The above asked question is from The Hexadecimal Number System topic in portion Number Systems of Computer Fundamentals

Answer»

Right answer is (B) hexadecimal POINT

Best explanation: The DECIMAL is often referred to as the hexadecimal point in hexadecimal REPRESENTATION of NUMBERS.

It is referred to as the octal point in octal numbers.

2.

Convert (6532)8 to hexadecimal.(a) (A01)16(b) (A02)16(c) (D5A)16(d) (C01)16The question was asked in an interview.My question is taken from The Hexadecimal Number System topic in division Number Systems of Computer Fundamentals

Answer»

The correct option is (C) (D5A)16

Explanation: To CONVERT octal to hexadecimal, we first WRITE binary FORMAT of the number and then make groups of 4 BITS from right to left, as follows:

3.

The 2’s complement of 10.11 :(a) 10(b) 0.010(c) 01.01(d) 10.01This question was posed to me during an internship interview.Origin of the question is The Hexadecimal Number System in chapter Number Systems of Computer Fundamentals

Answer»

Correct ANSWER is (a) 10

Easiest EXPLANATION: The 1’s COMPLEMENT of a number is OBTAINED by reversing the bits with value 1 to 0 and the bits with value 0 to 1.Here, 10.11 GETS converted to 01.00 in its 1’s complement format. Further, to convert 1’s complement into 2’s, we add 1 to the result.Here, 01.00+1=10.00.

4.

The hexadecimal equivalent of the binary number (0010010100)2 is :(a) (0B4)16(b) (0A4)16(c) 224(d) 0114The question was posed to me in an international level competition.This intriguing question comes from The Hexadecimal Number System in chapter Number Systems of Computer Fundamentals

Answer»

Correct CHOICE is (a) (0B4)16

Explanation: To obtain the OCTAL equivalent, we take numbers in groups of 3, from right to leftas :

5.

Convert (52)16 into its decimal equivalent.(a) 28(b) 83(c) 80(d) 82The question was asked during an internship interview.Enquiry is from The Hexadecimal Number System in section Number Systems of Computer Fundamentals

Answer»

Correct answer is (d) 82

The best EXPLANATION: To convert a hexadecimal number to DECIMAL number:

16^1 * 5 + 16^0 * 2 = 80 + 2 = 82

Hence, the decimal EQUIVALENT is 82.

6.

Hexadecimal Addition of (3A5)16 and (1B2)16 will give :(a) 557(b) 185(c) 815(d) 516I got this question in semester exam.I'd like to ask this question from The Hexadecimal Number System topic in portion Number Systems of Computer Fundamentals

Answer»

The correct CHOICE is (a) 557

Easy explanation: Octal subtraction is done as follows:

3A5

+1B2

________

557

In hexadecimal ADDITION of alphabets, we add the corresponding NUMBERS they represent and then subtract the result from 16, then generate a carry of 1 to the next set of numbers.

Here, 5+2=7

A+B=10+11=21-16=5

3+1+1(carry)=5.

7.

The binary number 1110 in hexadecimal format is _____________(a) 6(b) E(c) 14(d) 15This question was posed to me during an online exam.This interesting question is from The Hexadecimal Number System in section Number Systems of Computer Fundamentals

Answer»

The correct ANSWER is (B) E

Explanation: CERTAIN BINARY to hexadecimal REPRESENTATIONS are :

1010=A

1011=B

1100=C

1101=D

1110=E

1111=F.

8.

The maximum number of bits sufficient to represent a hexadecimal number in binary:(a) 4(b) 3(c) 7(d) 8I got this question in a job interview.This key question is from The Hexadecimal Number System in chapter Number Systems of Computer Fundamentals

Answer»

Correct choice is (a) 4

To explain I would SAY: The hexadecimal number system COMPRISES of only 15 symbols: 10 digits and 5 symbols. HENCE, three bits (2^4 = 16) are sufficient to REPRESENT any hexadecimal number in the binary format.

9.

ABC is a valid hexadecimal number.(a) True(b) FalseThe question was asked in unit test.This interesting question is from The Hexadecimal Number System in chapter Number Systems of Computer Fundamentals

Answer»

The correct OPTION is (a) True

To explain: In a hexadecimal number SYSTEM, alphabets are used for the representation of NUMBERS from 10 to 15. Here, A represents 10, B represents 11 and C represents 12. Therefore, it is a VALID hexadecimal number.

10.

What does the symbol D represent in a hexadecimal number system?(a) 8(b) 16(c) 13(d) 14This question was addressed to me during an online exam.My question comes from The Hexadecimal Number System in division Number Systems of Computer Fundamentals

Answer» CORRECT answer is (C) 13

Best explanation: The symbols A, B, C, D, E and F represent 10, 11, 12, 13, 14 and 15 respectively in a hexadecimal system. This system comprises of 15 numbers in TOTAL: digits from 0-9 and symbols from A to F.
11.

Express the decimal format of the signed binary number (10010)2 .(a) 2(b) 12(c) -12(d) -2This question was addressed to me in an online interview.The query is from The Octal Number System in portion Number Systems of Computer Fundamentals

Answer» RIGHT choice is (d) -2

Explanation: The first BIT is the sign bit whereas the rest of the bits are magnitude bits. So the NUMBER is: 0010 = 2^1* 1 =2

But, the sign bit is 1, THEREFORE the answer is : (-2)10.
12.

Convert (5401)8 to hexadecimal.(a) A01(b) A02(c) B01(d) C01The question was asked at a job interview.I want to ask this question from The Octal Number System in chapter Number Systems of Computer Fundamentals

Answer»

Right ANSWER is (c) B01

For EXPLANATION: To convert octal to hexadecimal, we FIRST write binary format of the number and then make groups of 4 bits from right to left, as follows:

13.

The 1’s complement of 0.101 is _________________(a) 1.010(b) 0.010(c) 0.101(d) 1.101This question was posed to me by my college professor while I was bunking the class.My question is from The Octal Number System in portion Number Systems of Computer Fundamentals

Answer»

The correct option is (a) 1.010

To ELABORATE: The 1’s complement of a NUMBER is obtained by reversing the bits with value 1 to 0 and the bits with value 0 to 1.

Here, 0.101 gets CONVERTED to 1.010 in its 1’s complement FORMAT.

14.

Octal subtraction of (232)8 from (417)8 will give______________(a) 165(b) 185(c) 815(d) 516I got this question during an online interview.My question comes from The Octal Number System in portion Number Systems of Computer Fundamentals

Answer»

Right choice is (a) 165

Easy explanation: Octal subtraction is DONE as follows:

417

–232

________

165

The octal subtraction is the same as that of any other NUMBER system. The only difference is, like in a decimal number system, we BORROW a group of 10, in a BINARY system we borrow a group of 2, in an octal number system, we borrow in groups of 8.

15.

The octal equivalent of the binary number (0010010100)2 is ______________(a) 422(b) 242(c) 224(d) 226The question was asked in exam.This is a very interesting question from The Octal Number System in chapter Number Systems of Computer Fundamentals

Answer»

Right answer is (c) 224

The explanation is: To obtain the octal EQUIVALENT, we take NUMBERS in GROUPS of 3, from right to leftas :

16.

Convert (22)8 into its corresponding decimal number.(a) 28(b) 18(c) 81(d) 82This question was addressed to me at a job interview.My question is based upon The Octal Number System in section Number Systems of Computer Fundamentals

Answer»

Correct ANSWER is (B) 18

To EXPLAIN: To convert an octal number to decimal number:

8^1 * 2 + 8^0 * 2 = 16 + 2 = 18.

Hence, the decimal equivalent is 18.

17.

The maximum number of bits sufficient to represent an octal number in binary is _______(a) 4(b) 3(c) 7(d) 8I got this question in an international level competition.My doubt stems from The Octal Number System topic in chapter Number Systems of Computer Fundamentals

Answer» CORRECT CHOICE is (b) 3

The best explanation: The octal number system comprises of only 8 digits. HENCE, three bits (23 = 8) are sufficient to represent any octal number in the BINARY format.
18.

The binary number 111 in octal format is________________(a) 6(b) 7(c) 8(d) 5I had been asked this question in a job interview.I want to ask this question from The Octal Number System in division Number Systems of Computer Fundamentals

Answer» RIGHT option is (b) 7

The explanation is: CERTAIN BINARY to octal REPRESENTATIONS are :

000=0

001=1

010=2

011=3

100=4

101=5

110=6

111=7.
19.

What could be the maximum value of a single digit in an octal number system?(a) 8(b) 7(c) 6(d) 5I had been asked this question by my school teacher while I was bunking the class.Enquiry is from The Octal Number System topic in division Number Systems of Computer Fundamentals

Answer»

Right answer is (b) 7

Explanation: The MAXIMUM value in any NUMBER system is one less than the value of the base. The base in an octal number system is 8, therefore, the maximum value of the single digit is 7. It TAKES DIGITS from 0 to 7.

20.

In a number system, each position of a digit represents a specific power of the base.(a) True(b) FalseThis question was posed to me in examination.My question is taken from The Octal Number System topic in section Number Systems of Computer Fundamentals

Answer»

Right option is (a) True

For explanation I would say: In a number system, EVERY DIGIT is denoted by a specific power of base. Like in an OCTAL system, CONSIDER the number 113, it will be represented as :

8^2 * 1 + 8^1 * 1 + 8^0 *3.

21.

Which of the following is not a binary number?(a) 1111(b) 101(c) 11E(d) 000I have been asked this question in a national level competition.This intriguing question comes from The Binary Number System topic in chapter Number Systems of Computer Fundamentals

Answer» CORRECT answer is (c) 11E

For explanation: A binary NUMBER can have only two possible digits, 0 and 1. In the THIRD option, there is an alphabet E present which makes it an invalid binary number. Alphabets are only allowed in the hexadecimal number SYSTEM.
22.

Which of the following is the correct representation of a binary number?(a) (124)2(b) 1110(c) (110)^2(d) (000)2This question was addressed to me during an interview.I'd like to ask this question from The Binary Number System in division Number Systems of Computer Fundamentals

Answer»

Right answer is (d) (000)2

To explain: The binary numbers should comprise only two digits 0 and 1.

Also, for the base, the value should be 2 and it should be WRITTEN as a subscript ENCLOSING the entire number.Here, the FOURTH option gives the correct representation.

23.

Convert the binary equivalent 10101 to its decimal equivalent.(a) 21(b) 12(c) 22(d) 31I had been asked this question during an online exam.My query is from The Binary Number System topic in section Number Systems of Computer Fundamentals

Answer» CORRECT answer is (a) 21

To explain: To CONVERT a binary number to its decimal EQUIVALENT FOLLOW these steps :

2^4 * 1+ 2^3 * 0 + 2^2 *1 + 2^1 * 0 + 2^0 * 1 = 21.

Therefore, the answer is 21.
24.

A bit in a computer terminology means either 0 or 1.(a) True(b) FalseI had been asked this question during a job interview.This question is from The Binary Number System in division Number Systems of Computer Fundamentals

Answer»

The CORRECT option is (a) True

To elaborate: A bit STANDS for a binary digit. A binary digit can have only two digits i.e. 0 or 1. A binary number CONSISTING of n-bits is called an n-bit number.

25.

The input hexadecimal representation of 1110 is _______________(a) 0111(b) E(c) 15(d) 14I got this question by my school teacher while I was bunking the class.This key question is from The Binary Number System in chapter Number Systems of Computer Fundamentals

Answer»

Right choice is (B) E

Explanation: In HEXADECIMAL number system, 1110 = 15, which is represented by the ALPHABET E.

Some representations are:

A10

B11

C12

D13

E14

F15.

26.

The binary equivalent of the decimal number 10 is __________(a) 0010(b) 10(c) 1010(d) 010I had been asked this question by my school teacher while I was bunking the class.My question comes from The Binary Number System in portion Number Systems of Computer Fundamentals

Answer»

The correct CHOICE is (c) 1010

To explain: To get the binary equivalent of any number, we NEED to divide the number by 2 and OBTAIN the remainders as :

We then write the remainders in the reverse ORDER as 1010 .

27.

A computer language that is written in binary codes only is _____(a) machine language(b) C(c) C#(d) pascalThe question was posed to me in an online interview.This interesting question is from The Binary Number System in portion Number Systems of Computer Fundamentals

Answer»

The correct answer is (a) machine language

For explanation I would say: Machine Language is WRITTEN in BINARY CODES only. It can be easily understood by the COMPUTER and is very difficult for us to understand. A machine language, unlike other languages, REQUIRES no translators or interpreters.

28.

The octal equivalent of 1100101.001010 is ______(a) 624.12(b) 145.12(c) 154.12(d) 145.21I had been asked this question in class test.I would like to ask this question from The Binary Number System in section Number Systems of Computer Fundamentals

Answer»

The CORRECT answer is (b) 145.12

To explain I would say: The octal EQUIVALENT is obtained by GROUPING the NUMBERS into three, from right to left before DECIMAL and from right to left after the decimal place.

Here,

i.e. 145.12 is the octal equivalent of the number.

29.

Which of the following is not a positional number system?(a) Roman Number System(b) Octal Number System(c) Binary Number System(d) Hexadecimal Number SystemThe question was posed to me in an online quiz.This interesting question is from The Binary Number System in division Number Systems of Computer Fundamentals

Answer»

Correct OPTION is (a) Roman NUMBER SYSTEM

Explanation: The Roman number system isn’t a positional number system since it uses symbols to REPRESENT numbers.

The octal number system uses digits from 0-7, the binary number system uses digits from 0-1 whereas, the hexadecimal number system uses digits from 0-15.

30.

The value of radix in binary number system is _____________(a) 2(b) 8(c) 10(d) 1The question was posed to me in examination.This interesting question is from The Binary Number System in portion Number Systems of Computer Fundamentals

Answer»

The CORRECT option is (a) 2

To ELABORATE: In a binary number SYSTEM, the value of base or radix is 2. The binary system uses only two digits for the representation of numbers, therefore its base id has CHOSEN to be 2.

31.

Select the incorrect option:(a) (101)10 = (1100101)2(b) G is valid in hexadecimal system.(c) C represents 12(d) The base of a decimal number system is 10.This question was addressed to me by my school principal while I was bunking the class.This intriguing question originated from The Decimal Number System topic in portion Number Systems of Computer Fundamentals

Answer»

The correct choice is (b) G is valid in hexadecimal system.

Explanation: G is not a valid hexadecimal number. In this system, only representations from A to E are used to REPRESENT the numbers from 10 to 15. The base of the hexadecimal number system is 16.

32.

Which of the following is not a decimal number?(a) 114(b) 43.47(c) 99.9A(d) 10101I had been asked this question in a job interview.I want to ask this question from The Decimal Number System in portion Number Systems of Computer Fundamentals

Answer»

Right answer is (C) 99.9A

Easy EXPLANATION: All the numbers except 99.9A are decimal numbers.

This NUMBER has a hexadecimal COMPONENT A in it, THEREFORE , it is not a valid decimal number.

The decimal equivalent of A is 10.

33.

The hexadecimal representation of 14 is_______________(a) A(b) F(c) D(d) EI got this question during an online exam.This intriguing question comes from The Decimal Number System in chapter Number Systems of Computer Fundamentals

Answer» RIGHT option is (d) E

For EXPLANATION: The HEXADECIMAL representations are as follows:

10 : A

11 : B

12 : C

13 : D

14 : E

15 : F.
34.

A number with both integer and a fractional part has digits raised to both positive and negative powers of 2 in a decimal number system.(a) True(b) FalseI had been asked this question in an interview for internship.The origin of the question is The Decimal Number System in division Number Systems of Computer Fundamentals

Answer»

Right choice is (b) False

For explanation: In a decimal NUMBER system, a number with both integer and a FRACTIONAL PART has digits raised to both POSITIVE and negative powers of 10 and not 2.

e.g. 22.34 = 2 * 10^1 + 2 * 10^0 + 3 * 10^-1 + 4 * 10^-2.

35.

The signed magnitude for -3 will be___________(a) 00000011(b) 10000011(c) 11111101(d) 11111100The question was asked in homework.The query is from The Decimal Number System topic in division Number Systems of Computer Fundamentals

Answer» CORRECT answer is (B) 10000011

The best I can explain: Signed Magnitude of a number is a representation to determine if the number is POSITIVE or negative.

If the MSB of a number is 0, the number is positive, else if it is 1 the number is negative.

Here, +3 = 00000011

-3= 100000011.
36.

Another name for base is __________(a) root(b) radix(c) entity(d) medianThe question was posed to me in an interview for job.My enquiry is from The Decimal Number System topic in division Number Systems of Computer Fundamentals

Answer»

Correct choice is (B) radix

The BEST I can explain: Another name for base is radix. Base REFERS to the number of digits that a particular number system consists of.

The base of decimal number system is 10, binary is 2 and so on.

37.

The decimal equivalent of (0.101)2 will be____________(a) 0.5(b) 0.625(c) 0.25(d) 0.875I have been asked this question during an interview for a job.This key question is from The Decimal Number System topic in section Number Systems of Computer Fundamentals

Answer»

Right ANSWER is (b) 0.625

The BEST explanation: Since the base is 2 , it could be easily GUESSED that the NUMBER is binary. Conversion: 2^-1 * 1 + 2^-2 * 0 + 2^-3 * 1 =0.625.

38.

The 2’s complement of 15 is ____________(a) 0000(b) 0001(c) 0010(d) 0100The question was posed to me in exam.I want to ask this question from The Decimal Number System in portion Number Systems of Computer Fundamentals

Answer» RIGHT choice is (B) 0001

The best I can explain: 2’s COMPLEMENT is obtained by adding 1 to the 1’s complement of the number.

Here, Binary of 15 = 1111

1’s complement of 15= 0000

2’s complement of 15= 0000+1=0001.
39.

Convert :(110)2 = ( __ )10.(a) 4(b) 5(c) 6(d) 9I have been asked this question in unit test.The origin of the question is The Decimal Number System in section Number Systems of Computer Fundamentals

Answer» RIGHT ANSWER is (c) 6

The best explanation: The base 2 represents that the number is binary ,whereas, the base 10 represents that it is to be CONVERTED to the decimal format.

Conversion:2^2 * 1 + 2^1 * 1 + 2^0 *0 = 6.
40.

The value of base in a decimal number system is ____________(a) 8(b) 2(c) 10(d) 16I have been asked this question during a job interview.I'm obligated to ask this question of The Decimal Number System topic in division Number Systems of Computer Fundamentals

Answer»

Right answer is (c) 10

To elaborate: A decimal NUMBER system consists of 10 DIGITS from 0 to 9.

The definition of BASE describes it as a quantity to represent the number of digits PRESENT in that particular number system.

Therefore, here, the base is 10.

41.

ASCII stands for _____________________(a) American standard code for information interchange(b) American scientific code for information interchange(c) American scientific code for international interchange(d) American standard code of international interchangeI got this question in an online interview.My question is from Positional & Non-Positional Number System topic in section Number Systems of Computer Fundamentals

Answer»

The CORRECT choice is (a) American standard code for INFORMATION interchange

Explanation: ASCII is an encoding standard which is used for communications worldwide. ASCII codes are ALLOTTED to digits, special characters and ALPHABETS for data communication PURPOSE.

42.

Perfrom BCD addition: 2+3= _______________(a) 0010(b) 0011(c) 0101(d) 1010I got this question during a job interview.I want to ask this question from Positional & Non-Positional Number System topic in chapter Number Systems of Computer Fundamentals

Answer» CORRECT choice is (C) 0101

To explain I would say: BCD of 2 =0010

BCD of 3=0011

0010+0011=0101

Therefore, 2+3=0101(5).
43.

1 zettabyte = ______________(a) 1024 TB(b) 1024 EB(c) 1024 ZB(d) 1024 PBThis question was posed to me in examination.Question is taken from Positional & Non-Positional Number System topic in section Number Systems of Computer Fundamentals

Answer» CORRECT CHOICE is (B) 1024 EB

Explanation: 1 ZB=1024 EB(exabyte)

 1 EB=1024PB(petabyte)

1 YB(yottabyte)=1024ZB.
44.

What does BCD stand for?(a) Bitwise codeddecimal(b) Binary coded decimal(c) Binary converted decimal(d) Bitwise Converted DecimalI had been asked this question in an online interview.My question comes from Positional & Non-Positional Number System in section Number Systems of Computer Fundamentals

Answer»

The correct choice is (b) Binary CODED DECIMAL

For explanation: BCD is the binary coded decimal form of representation of NUMBERS in 4 bits.E.g. The BCD representation of 5 is 0101. BCD representation of 22 is 00100010.

45.

A device that uses positional notation to represent a decimal number.(a) Abacus(b) Calculator(c) Pascaline(d) ComputerI have been asked this question during an interview for a job.My doubt is from Positional & Non-Positional Number System topic in chapter Number Systems of Computer Fundamentals

Answer»

Correct choice is (a) Abacus

The explanation: Abacus was used to doing ARITHMETIC calculations around 2500 years AGO. Pascaline was the PASCAL’s calculator by BLAISE Pascal invented for doing LABORIOUS calculations.

46.

The 2’s complement of 5 is ______________(a) 1011(b) 0101(c) 1010(d) 0011I got this question in a job interview.This intriguing question comes from Positional & Non-Positional Number System topic in portion Number Systems of Computer Fundamentals

Answer»

The CORRECT answer is (a) 1011

The best explanation: The 2’s complement is OBTAINED by adding 1 to the 1s complement of a number. The 1’s complement of 5(0101) is 1010. For 2’s complement : 1010+1=1011.

47.

How is the number 5 represented in non-positional number system?(a) IIIII(b) 5(c) V(d) vI have been asked this question during an interview.My enquiry is from Positional & Non-Positional Number System topic in section Number Systems of Computer Fundamentals

Answer»

The correct answer is (a) IIIII

To elaborate: In a non-positional NUMBER system, 1 is REPRESENTED as I, 2 as II, 3 as III, 4 as IIII and THEREFORE, 5 is represented as IIIII. This number system uses symbols for the representation of digits.

48.

The LSB and MSB of 1243247 are ____ and ____(a) 1, 7(b) 4, 7(c) 7, 1(d) 4, 1This question was posed to me in exam.The above asked question is from Positional & Non-Positional Number System topic in division Number Systems of Computer Fundamentals

Answer»

Correct answer is (c) 7, 1

Explanation: The LSB or the least SIGNIFICANT BIT is the rightmost digit at the zeros position. The MSB or the most significant bit is the LEFTMOST digit.

49.

The base is the total number of digits in a number system.(a) True(b) FalseThe question was posed to me by my school teacher while I was bunking the class.I want to ask this question from Positional & Non-Positional Number System in division Number Systems of Computer Fundamentals

Answer»

The correct ANSWER is (a) TRUE

Explanation: The statement is true. In a positional number system, base is the number of digits the system COMPRISES.For example, a binary number system comprises of only 2 digits, 0 and 1, therefore its base is 2. Similarly, the decimal system comprises 10 digits 0 to 9, therefore its base is 10.

50.

Which of the following is not a type of number system?(a) Positional(b) Non-Positional(c) Octal(d) FractionalThe question was posed to me by my school principal while I was bunking the class.I want to ask this question from Positional & Non-Positional Number System in chapter Number Systems of Computer Fundamentals

Answer»

Right option is (d) Fractional

To EXPLAIN I WOULD say: There are two main types of number SYSTEMS : Positional & Non-positional.

Positional SYSTEM uses digits for the representation whereas, non-positional number systems use certain symbols for the representation of numbers. Octal is a type of positional number systems with base 8.