Digital Electronics - Number Systems and Codes - Discussion

Discussion Forum : Number Systems and Codes - General Questions (Q.No. 6)
6.
Decode the following ASCII message.
10100111010100101010110001001011001
01000001001000100000110100101000100
STUDYHARD
STUDY HARD
stydyhard
study hard
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
47 comments Page 2 of 5.

Mohini said:   7 years ago
1010011 first convert to octal or hexadecimal eg. In hexadecimal, it is 53 then 53 into decimal 5*16^1 + 3*16^0=80+3=83 decimal number.

Ankit said:   8 years ago
Thanks for the explanation @Vinsan.

Dimpie said:   8 years ago
Well explained, Thank you @Vinsan.

Manish said:   8 years ago
1010011 =83. How?

Pavankumar said:   8 years ago
Good explanation. @Vinsian.

Rama Krishna Sambari said:   8 years ago
Most of the people asking why to take 7bits particularly. The explanation is simple.

A-Z = 65-90
a-z = 97 - 122

2^0 = 1
2^1 = 2
2^2 s= 4
.
.
.
2^6 = 64
2^7 = 128
2^8 = 256

Here all the alphabets including upper and lower decimal values will not exceed 128 which is 2^7, which means the MSB is always 0 which is ignored here.

Uday said:   8 years ago
Why not study hard? @Venkatesh.

Priya said:   8 years ago
We have to group 7 bits for each group. i.e., from least significant position to most significant position and then place them with equivalent ASCII code.

Y@seen said:   9 years ago
Good explanation @Vinsian.

Venkatesh said:   9 years ago
Another way to do. First, we can observer question it consists of a 70. Each ASCII bit is 7. Total 70/7=10 characters. Only b option contains 10 characters.


Post your comments here:

Your comments will be displayed after verification.