If the host on a network has the address 172.16.45.25/30, what is the subnet ID to which this host belongs?

A) 172.16.45.16
B) 172.16.45.20
C) 172.16.45.24
D) 172.16.45.28

C
Explanation: C) The correct answer is 172.16.45.24 because, first, the resident subnet (the subnet ID of the subnet in which the address resides) must be numerically smaller than the IP address, which rules out one of the answers. The mask converts to 255.255.255.252. As such, you can copy the first three octets of the IP address because of their value, 255. 55. For the fourth octet, the subnet ID value must be a multiple of 4 (magic number) because 256 - 252 (mask) = 4. Those multiples include 16, 20, and 24, and the correct choice is the multiple closest to the IP address value in that octet (25 ) without going over. So, the correct subnet ID is 172.16.45.24.

Computer Science & Information Technology

You might also like to view...

Given the following statement, which statement will write the string "Calvin" to the file DiskFile.txt?

``` PrintWriter diskOut = new PrintWriter("DiskFile.txt"); ``` a. System.out.println(diskOut, "Calvin"); b. PrintWriter.println("Calvin"); c. DiskFile.println("Calvin"); d. diskOut.println("Calvin");

Computer Science & Information Technology

__________ is an authentication service developed as part of Project Athena at MIT.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology