edited by
35,719 views
60 votes
60 votes

The address of a class $\text{B}$ host is to be split into subnets with a $6\;\text{-bit}$ subnet number. What is the maximum number of subnets and the maximum number of hosts in each subnet?

  1. $62$ subnets and $262142$ hosts.

  2. $64$ subnets and $262142$ hosts.

  3. $62$ subnets and $1022$ hosts.

  4. $64$ subnets and $1024$ hosts.

edited by

13 Answers

–1 votes
–1 votes
IN CLass B we have 16 Bit for NETWORK_ID and 16 Bit for HOST_ID..According to question 6 Bit is chosen for subnetting

then we have 10 bits left in HOST_ID part

Now question is asking for Maximum no host per subnet (2^10)-2 = 1022

which is only in option C..NOTE: It is asking for Maximum no HOST

NOT Maximum NO OF IP ADDRESSES WE HAVE PER SUBNET

IF in quesstion it is asking for maximum no of IP addresses then we have 1024 IP addresses

There is difference in Maximum no of IP ADRESSES and maximum no HOST
Answer:

Related questions

27 votes
27 votes
4 answers
11
Kathleen asked Sep 21, 2014
33,970 views
The message $11001001$ is to be transmitted using the CRC polynomial $x^3 +1$ to protect it from errors. The message that should be transmitted is:$11001001000$$110010010...
11 votes
11 votes
1 answer
12
64 votes
64 votes
15 answers
13
Arjun asked Jul 6, 2016
37,127 views
Consider the following segment of C-code:int j, n; j = 1; while (j <= n) j = j * 2;The number of comparisons made in the execution of the loop for any $n 0$ is:$\lceil \...