Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Computer Basics Interview Questions and Answers

Question: What is Binary?
Answer:

Binary numbers look strange when they are written out directly.This is because the digits weight increases by powers of 2, rather than by powers of 10. In a digital numeral, the digit furthest to the right is the ones digit; the next digit to the left is the twos digit; next comes the fours digit, then the eights digit, then the 16s digit, then the 32s digit, and so on.The decimal equivalent of a binary number can be found by summing all the digits.For example, the binary 10101 is equivalent to the decimal = 1x20 + 0x21 + 1x22 + 0x23 + 1x24 = 1 + 4 + 16 = 21:

DECIMAL = 216432168421
BINARY = 101010010101

 

The numbers from decimal 0 through 15 in decimal, binary, octal and hexadecimal form are listed below. 

DECIMALBINARYOCTALHEXA-
DECIMAL
0000000
1000111
2001022
3001133
4010044
5010155
6011066
7011177
81000108
91001119
10101012A
11101113B
12110014C
13110115D
14111016E
15111117F

Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook