Which of the following are private IP networks?

A) 172.48.0.0
B) 172.27.0.0
C) 192.168.25.0
D) 192.167.36.0

B, C
Explanation: B) The correct answer is 172.27.0.0 because it falls in the range of 172.16.0.0 — 172.31.0.0, and 192.168.25.0 also is correct because it falls in the range of 192.168.0.0 — 192.168.255.0.
C) The correct answer is 172.27.0.0 because it falls in the range of 172.16.0.0 — 172.31.0.0, and 192.168.25.0 also is correct because it falls in the range of 192.168.0.0 — 192.168.255.0.

Computer Science & Information Technology

You might also like to view...

Define URL and describe the functions of the three main features of a URL

What will be an ideal response?

Computer Science & Information Technology

The following code compiled, but while running it the program appears to hang (e.g. nothing happens). This is a sign that there may be an infinite loop. What part of this code fragment may be causing an infinite loop?

``` while(i < 50); { System.out.println(i); i+=2; } ```

Computer Science & Information Technology