Which of the following would be a usable IP address to assign to a host in the network 192.168.10.32/28?

A) 192.168.10.39
B) 192.168.10.47
C) 192.168.10.14
D) 192.168.10.54


A
Explanation: A) The correct answer is 192.168.10.39 because the given mask of /28 converts to a value of 255.255.255.240, and subtracting the fourth value from 256 (256 — 240 ) equals 16 (magic number). The multiples of 16 include the values 0, 16, 32, 48, and so on. Using the last value of the IP address given, compare it to your list and take the lowest value; the subnet would be 192.168.10.32. This makes the available host range 33 through 46.

Computer Science & Information Technology

You might also like to view...

Which of the following uses C++11's list initialization to initialize count to 0?

a. int count = 0; b. int count[0]; c. int count(0); d. int count{0};

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

1. The value of a given number is found by multiplying each digit by its place or positional value and then multiplying the products. 2. Any number raised to the zero power is (by definition) zero. 3. In any number system, only values less than the base can be written with a single digit. 4. If the positional values are powers of 4, you have the framework of a binary or base-2 number system. 5. The digit zero (0) is needed to represent nothing in a given position.

Computer Science & Information Technology

Which statements will generate random numbers between 0 and 1? Assume number is a double

A. num = rand()%1001; ran = num/1000.0 B. num = srand()%1001; ran = num/1000.0 C. num = rand(1001/1000) D. num = srand(.001) ran = num*1000.0;

Computer Science & Information Technology

There are two ways to move vertically from one record to another in a table; use the vertical scroll bar or the ____________________.

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

Computer Science & Information Technology