in Computer Networks edited by
14,921 views
35 votes
35 votes

Suppose computers $A$ and $B$ have $IP$ addresses $10.105.1.113$ and $10.105.1.91$ respectively and they both use same netmask $N$. Which of the values of $N$ given below should not be used if $A$ and $B$ should belong to the same network?

  1. $255.255.255.0$
  2. $255.255.255.128$
  3. $255.255.255.192$
  4. $255.255.255.224$
in Computer Networks edited by
14.9k views

1 comment

edited by
$A = \textbf{10.105.1.(01}110001)_2$
$B = \textbf{10.105.1.(01}011011)_2$

The first 26 bits of $A$ and $B$ match, therefore netmask $N$ can range from $/0$ to $/26$ for $A$ and $B$ to be in the same network.
Option $D.$ is $/27$ which is outside the range of $N$
$\therefore \  D.$ is the answer.
9
9

4 Answers

46 votes
46 votes
Best answer

D is correct answer because:

When we perform $AND$ operation between $IP$ address $10.105.1.113$ and $255.255.255.224$ result is  $10.105.1.96$

When we perform $AND$ operation between $IP$ address  $10.105.1.91$ and $255.255.255.224$ result is $10.105.1.64$

$10.105.1.96$ and $10.105.1.64$ are different network so $D$ is correct answer.

edited by

1 comment

The question says which of the values of N given below should not be used if A and B should belong to the same network. According to option 4 A and B do not belong to same network hence the option should not be considered only. If i choose answer as A where least numbers of bits are used to represent subnet mask. While in option B and C more nos of bits are used in Subnet mask. Hence answer should be A why D is selected as an option?
1
1
18 votes
18 votes
ANSWER : OPTION D
 

Method-  

128  64  32  16  8  4  2  1

  0     1   1    1   0  0  0  1  --- (113 last octet of first address)
  
  0     1    0   1   1  0   1  1  ----(91 last octet of second address)

Now, first MSB and second bit matching but 3rd bit is different.

so , we need 3  continos one's in mask, for different network.
So mask will be 255.255.255.224
 

@Arjun Sir please check , this method is also right or not?

2 Comments

Good method
0
0
I apply the same...right method...
0
0
7 votes
7 votes

The last octets of IP addresses of A and B 

A:113 (01110001) and

B: 91 (01011011). 

The netmask in option (D) has first three bits are 111  in last octet. If netmask has first 3 bits set, then these bits must be same in A and B, but that is not the case. we can say option (D) is not a valid netmask because doing binary ‘&’ of it with addresses of A and B doesn’t give the same network address. It must be same address as A and B are on same network. 

1 comment

good explanation.
0
0
0 votes
0 votes

To solve these kind of questions, first approach should be finding network ID

Now given all the subnet masks, try to calculate Network ID for both the IP addresses and you will find out that

last octet of both the IP addresses are 113 and 91 respectively

With 224 in the last octet of Subnet mask, we are not able to get same Network ID as

113 is 01101111 and

  91 is 01011011 

with 0 mask we get 0 as network id

with 128 we get 0 as network id

with 192 we get 64 as network id

but with 224 we get different network ids

Hence option with 224 in the last octet is the correct answer.

 

 

Answer:

Related questions