InterviewSolution
Saved Bookmarks
| 1. |
Convert the ip address whose hexadecimal representation is c22f1582 to dotted decimal notation |
|
Answer» Given Hexadecimal representation is C22F1582. (i) Each digit in hexadecimal notation represents 4 bits in a binary address. 1 = 1 2 = 10 5 = 101 8 = 1000 A = 10 = 1010 B = 11 = 1011 D = 13 = 1101 E = 14 = 1110 F = 15 = 1111. (II) Now, given hexadecimal notation can be written as: ⇒ C2.2F.15.82 (iii) Convert it into binary notation. ⇒ 1100010.101111.10101.1000010 (iv) Convert to dotted decimal notation: ⇒ 194.47.21.130. ∴ Dotted decimal notation is 194.47.21.130 - CLASS "C" network. Hope it helps! |
|