GATE Exam  >  GATE Tests  >  Test: Types of Number System - GATE MCQ

Test: Types of Number System - GATE MCQ


Test Description

10 Questions MCQ Test - Test: Types of Number System

Test: Types of Number System for GATE 2024 is part of GATE preparation. The Test: Types of Number System questions and answers have been prepared according to the GATE exam syllabus.The Test: Types of Number System MCQs are made for GATE 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests for Test: Types of Number System below.
Solutions of Test: Types of Number System questions in English are available as part of our course for GATE & Test: Types of Number System solutions in Hindi for GATE course. Download more important topics, notes, lectures and mock test series for GATE Exam by signing up for free. Attempt Test: Types of Number System | 10 questions in 30 minutes | Mock test for GATE preparation | Free important questions MCQ to study for GATE Exam | Download free PDF with solutions
Test: Types of Number System - Question 1

Find the Octal equivalent of hexa decimal number (FB2)16?

Detailed Solution for Test: Types of Number System - Question 1

Concept:
A number system includes the number of independent digits used in the number system (the base), the place values of the different digits constituting the number, and the maximum numbers that can be written with the given number of digits.
Octal numbers: These numbers use digits from 0 to 7, total of 8 digits, and hence they are called octal number system. Octal numbers have base 8.
Hexadecimal numbers: The numbers which have base 16. It uses 16 different digits to represent the numbers. It is denoted as h16, where h is a hexadecimal number. It may be a combination of alphabets and numbers. Thus, it includes numbers from 0 to 9 and alphabets A to F.

Calculation:
Hexadecimal to Octal Conversion:
Given, (FB2)16 is a hexadecimal number.
F → 1111, B → 1011, 2 → 0010
1111 1011 0010
Now group them from right to left, each having 3 digits.
111, 110, 110, 010
111 → 7, 110 → 6, 110 → 6, 010 → 2
Hence, FB216 = 76628

*Answer can only contain numeric values
Test: Types of Number System - Question 2

If (154)b / (14)b = (8)10, then what is the radix b is _______?


Detailed Solution for Test: Types of Number System - Question 2

Convert the given b-radix into a decimal system.
(154)b / (14)b = (8)10
(1 x b+ 5 x b+ 4 x b0)10 / (1 x b+ 4 x b0)10 = (8)10 (b2 + 5 b + 4) / (b + 4) = 8
(b2 + 5 b + 4) = 8 (b + 4) 
b+ 5b + 4 = 8b + 32
b2 - 3b - 28 = 0
b2 - 7b + 4b - 28 = 0
b(b - 7) + 4(b - 7) = 0
b = -4 or b = 7
b = 7 Here b value should be greater than 5 because it maximum digit in b radix.
Hence the correct answer is 7.

1 Crore+ students have signed up on EduRev. Have you? Download the App
Test: Types of Number System - Question 3

Calculate the decimal equivalent of an octal number 10.

Detailed Solution for Test: Types of Number System - Question 3

Concept:
Another number system to Decimal

In each and every representation of numbers with different bases, the maximum value in a number system with the base ‘r’ is r – 1. Since numbers vary from 0 to r – 1.
To convert any number which is in a different base to a decimal number system we use binary-weighted representation.
Eg: let the number be ( abc⋯ ⋯ yz)r
Now to convert the above number into the decimal number system
a × rn-1 + b × rn-2 + ⋯ ⋯ + y × r1 + z × r0
If we convert all numbers into decimals then we can perform normal addition and subtraction etc.
Calculation:
>Octal to decimal conversion →
(10)8 = 1 × 81 + 0 × 80 = 8 + 0 = (8)10

Test: Types of Number System - Question 4

If (110)x = (132)4, then x =

Detailed Solution for Test: Types of Number System - Question 4

Concept:
Another number system to Decimal
In each and every representation of numbers with different bases, the maximum value in a number system with the base ‘r’ is r – 1. Since numbers vary from 0 to r – 1.
To convert any number which is in the different base to decimal number system we use binary-weighted representation.
Eg: let the number be ( abc⋯ ⋯ yz)r
Now to convert the above number into the decimal number system
a × rn-1 + b × rn-2 + ⋯ ⋯ + y × r1 + z × r0
If we convert all numbers into decimal then we can perform normal addition and subtraction etc.

Application:
Given:
(110)x = (132)4,
The decimal equivalent of this number will be:
1 x x2 + 1 x x1 + 0 x x0 = 1 x 42 + 3 x 4 + 2 x 40
x2 + x + 0 = 16 + 12 + 2
x2 + x - 30 = 0 
On solving this quadratic equation we'll get:
x = 5, -6
Base can't be a negative so;
x = 5

Test: Types of Number System - Question 5

The hexadecimal representation of 6578 is 

Detailed Solution for Test: Types of Number System - Question 5

Concept:
Hexadecimal number: In this, value of the base is 16. Each digit is represented by 4-bit binary no.
Octal number: For octal number, value of base is 8. Each digit of an octal number is represented by 3-bit binary no.
Octal number = 657
Binary representation for this number (each digit of a octal number is converted into 3 binary bits) 
So, 657 in binary is equivalent to 110 101 111
Now group this binary number into 4 bits starting from right to left. 
i.e. 0001 1010 1111
Hexadecimal representation for this number is : 1AF

Test: Types of Number System - Question 6

The decimal number (57.375)10 when converted to binary number takes the form:

Detailed Solution for Test: Types of Number System - Question 6

Concept:
Decimal to binary:

  • Take decimal number as dividend.
  • Divide the number by 2.
  • Get the integer quotient for the next iteration.
  • Get the remainder (it will be either 0 or 1 because of divisor 2).
  • Repeat the steps until the quotient is equal to 0
  • Write the remainders in reverse order (which will be equivalent binary number of given decimal number).

Decimal to binary: (fractional part)

  • Take decimal number as multiplicand.
  • Multiple this number by 2 (2 is base of binary so multiplier here).
  • Store the value of integer part of result in an array (it will be either 0 or 1 because of multiplier 2).
  • Repeat the above two steps until the number became zero.
  • Write these resultant integer part

Calculation:
Binary of  57:

Now, write remainder from bottom to up (in reverse order), this will be 111001 which is equivalent binary number of decimal integer 57.
Convert decimal fractional number 0.375 into binary number.
Here, decimal fraction: 0.375

Now, write these resultant integer part, this will be 0.0110 which is equivalent binary fractional number of decimal fractional 0.375.
∴ 57.375 can be written as 111001.011 in binary
Hence, option (1) is correct.

Test: Types of Number System - Question 7

The binary equivalent of 23 is

Detailed Solution for Test: Types of Number System - Question 7

Formula:
If we covert x decimal to binary, divide x successively by 2 until the quotient is 0.

Calculation:
Divide 23 successively by 2 until the quotient is 0:
23/2 = 11, remainder is 1 (LSB)
11/2 = 5, remainder is 1
5/2 = 2, remainder is 1
2/2 = 1, remainder is 0
1/2 = 0, remainder is 1 (MSB)
Read from the bottom (MSB) to top (LSB) as 10111
∴ 10111 is the binary equivalent of decimal number 23

Test: Types of Number System - Question 8

The number of unique Symbols used in the binary number system is

Detailed Solution for Test: Types of Number System - Question 8

A binary number is a number expressed in the base-2 numeral system or binary numeral system, a method of mathematical expression that uses only two symbols: typically "0" and "1". The base-2 numeral system is a positional notation with a radix of 2. Each digit is referred to as a bit or binary digit.
Decimal system, also called Hindu-Arabic number system or Arabic number system, in mathematics, a positional numeral system employing 10 as the base and requiring 10 different numerals, the digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. It also requires a dot to represent decimal fractions.

Decimal system to binary system:
(0)10 = (0)2
(1)10 = (1)2
(2)10 = (10)2
(3)10 = (11)2
(4)10 = (100)2
(5)10 = (101)2
(6)10 = (110)2
(7)10 = (111)2
(8)10 = (1000)2
(9)10 = (1001)2
(10)10 = (1010)2....
Hence the correct answer is two.

Test: Types of Number System - Question 9

What is the decimal equivalent of 111012 ?

Detailed Solution for Test: Types of Number System - Question 9

Concept:
The binary number system with only two independent digits, 0 and 1, is a base-2 number system. All larger binary numbers are represented in terms of ‘0’ and ‘1’.
The decimal number is equal to the sum of binary digits (Dn) times their power of 2 (2n).
Decimal = - - - + D2 × 22 + D1 × 21 + D0 × 20 - - -

Calculation:
Given binary number = 111012
The equivalent decimal representation will be:
Decimal = 1 × 24 + 1 × 23 + 1 × 22 + 0 × 21 + 1 × 20
Decimal = 16 + 8 + 4 + 0 + 1
Decimal = (29)10

Test: Types of Number System - Question 10

(1101 0001)2 binary number is same as ( )8 octal number.

Detailed Solution for Test: Types of Number System - Question 10

Octal Number: 

  • The number to the Base 8 is called octal numbers.
  • It uses the numbers from 0 to 7.
  • The numbers 8 and 9 are not included in the octal number system.
  • It is denoted by a8 where a is a number with digits 0 to 7.

Conversion from Binary to Octal:
An octal Equivalent of a binary number is obtained by grouping 3 bits from right to left.

So, Octal Equivalent: 321.
Binary to Octal code:

Information about Test: Types of Number System Page
In this test you can find the Exam questions for Test: Types of Number System solved & explained in the simplest way possible. Besides giving Questions and answers for Test: Types of Number System, EduRev gives you an ample number of Online tests for practice
Download as PDF