- Reasoning - Home
- Reasoning - Overview
- Reasoning
Coded Binary Numbers Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to Coded Binary Numbers. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.
Go through the following information and answer the question carefully.
In a certain code, the symbol for 0 (zero) is * and for 1 is Δ. There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be depicted using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
0 is depicted as *
1 is depicted as Δ
2 is depicted as Δ*
3 is depicted as Δ Δ
4 is depicted as Δ** and so on.
Q 1 - Which of the following numbers will be represented by Δ*Δ*Δ*?
Options :
Answer : A
Explanation
Δ*Δ*Δ* = 101010
= 1 x 25 + 0 x 24 + 1 x 23 + 0 x 22 + 1 x 21 + 0 x 20
= 32 + 0 + 8 + 0 + 2 + 0 = 42
Go through the following information and answer the question carefully.
In a certain code, the symbol for 0 (zero) is > and for 1 is =. There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be depicted using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
'0' is depicted as >
'1'is depicted as =
'2' is depicted as = >
'3' is depicted as = =
'4' is depicted as = >> and so on
Q 2 - Which of the following represents 22?
Options :
Answer : B
Explanation
(22)10 = (10111)2 ⇒(=>>=)
Go through the following information and answer the question carefully.
Symbols for 0 is < and for 1 is }. There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be depicted using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
'0' is written as <
'1' is written as }
'2' is written as }<
'3' is written as }}
'4' is written as }<< and so on.
Q 3 - Which of the following numbers will be represented by }<<}<}}?
Options :
Answer : B
Explanation
Put 1,2,4,8 and so on below each symbol starting from the right end of the symbol arrangement, we get
| } | < | < | } | < | } | } |
| 64 | 32 | 16 | 8 | 4 | 2 | 1 |
Now, since < is the code for 0. Therefore, ignore all the values written below <. Thus } << } < } } = 64 + 8 + 2 + 1 = 75
Go through the following information and answer carefully.
Symbol for 0 is % and for 1 is ). There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be depicted using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
'0' is written as %
'1' is written as )
'2' is written as )%
'3' is written as ))
'4' is written as )%% and so on.
Q 4 - Suppose ))% is divided by )). The result will be expressed as
Options :
Answer : B
Explanation
##@ ⇒ 110 ⇒ 1 x 22 + 1 x 21 + 0 x 20 = 4 + 2 = 6
## ⇒ 11 ⇒ 1 x 21 + 1 x 20 = 2 + 1 = 3
$\frac{\#\#@}{\#\#} \:= \:\frac{6}{3} \:= \:2$ , 2 ⇒ #@
))% = 110 = 1 x 22 + 1 x 21 + 1 x 20 = 4 + 2 = 6
)) = 11 = 1 x 21 + 1 x 20 = 2 + 1 = 3
6 ÷ 3 = 2
Binary equivalent of 2 is )%
Go through following information and answer the question accordingly.
In a certain code, the symbol for 0 is ! and for 1 is +. There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be depicted using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
'0' is depicted as !
'1' is depicted as +
'2' is depicted as +!
'3' is depicted as ++
'4' is depicted as +!! and so on
Q 5 - Which of the following will represent 11?
Options :
Answer : A
Explanation
So (11)10 = (1011)2 = +!++
Go through the following question and answer accordingly.
In a certain code, the symbol for 0 (zero) is Δ and for 1 is *. There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be written using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
'0' is depicted as Δ
'1' is depicted as *
'2' is depicted as *Δ
'3' is depicted as **
'4' is depicted as *Δ Δand so on.
Q 6 - Which of the following symbol combination will represent '9'?
Options :
Answer : C
Explanation
(9)10 = (1001)2 = *Δ Δ*
Go through the following information and answer the question accordingly.
In a certain code, the symbol for 0 is * and for 1 is Δ . There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be written using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
0 is written as *
1 is written as Δ
2 is written as Δ*
3 is written as Δ Δ
4 is written as Δ** and so on.
Q 7 - Which of the following will represent 23?
Options :
Answer : B
Explanation
The decimal to binary conversions will be
(23)10 = (10111)2
Go through the following information and answer the question accordingly.
In a certain code, the symbol 0 is written as - and for 1 is $. There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be written using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
0 is written as -
1 is written as $
2 is written as $-
3 is written as $$
4 is written as $--
Q 8 - Which of the following numbers will be represented by -$$-?
Options :
Answer : B
Explanation
The number is -$$- = (0110)2 = (6)10
Try to solve the questions by deep analyzing the given information.
In a certain code, the symbol for 0 is + and for 1 is *. There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be written using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
0 is written as +
'1' is written as *
2 is written as *+
3 is written as **
4 is written as *++ and so on
Q 9 - Which of the following numbers will be represented by *++*
Options :
Answer : D
Explanation
*++*can be represented as 1001 it means 8 + 0 + 0 + 1 = 9.
Try to solve the questions by deep analyzing the given information.
In a certain code, the symbol for 0 is ! and for 1 is #. There is no symbol for rest of the numbers. Numbers greater than 1 are needed to be written using the two given symbols. Left shifting of 1 doubles its value each time. Study the following example.
0 is written as !
1 is written as #
2 is written as #!
3 is written as ##
4 is written as #!! and so on
Q 10 - Which of the following no will be represented by ###.
Options :
Answer : B
Explanation
### can be represented as 111 it means 4 + 2 + 1 = 7.