edited by
951 views
0 votes
0 votes

The address of a class $B$ Host is to be split into subnets with a $3$-bit subnet number. What is the maximum number of subnets and maximum number of hosts in each subnet?

  1. $8$ subnets and $262142$ hosts
  2. $6$ subnets and $262142$ hosts
  3. $6$ subnets and $1022$ hosts
  4. $8$ subnets and $1024$ hosts
edited by

1 Answer

2 votes
2 votes

CLASS B MASK

11111111.11111111.00000000.00000000

BUT according to question we want three bit subnet then mask

11111111.11111111.11100000.00000000

n general, the number of available hosts on a subnet is $2^{h}−2$, where h is the number of bits used for the host portion of the address. The number of available subnet is $2^{n}$, where n is the number of bits used for the network portion of the address.

Number of subnet=$ 2^{3}$=8

Number of host in each subnet=$2^{13}-2$=8190

none of the ans

Answer:

Related questions

0 votes
0 votes
2 answers
1
admin asked Apr 1, 2020
1,157 views
The maximum data rate of a channel of $3000$-Hz bandwidth and SNR of $30$ db is$60000$$15000$$30000$$3000$
1 votes
1 votes
2 answers
2
1 votes
1 votes
2 answers
3
2 votes
2 votes
1 answer
4
admin asked Apr 1, 2020
1,070 views
The height of a binary tree is the maximum number of edges in any root to leaf path. The maximum number number of nodes in a binary tree of height $h$ is $2^{h}$$2^{h-1} ...