In finding all possible subnet IDs for a network, what would be the magic number for subnetting network 192.168.0.0 using mask 255.255.224.0?

A) 16
B) 32
C) 64
D) 88


B
Explanation: B) The answer is derived from subtracting 224 (the first octet whose value is not 255 or 0 ) from 256.

Computer Science & Information Technology

You might also like to view...

What new feature in Windows 10 allows the user to create multiple desktops that can host different open windows?

A. Open Desktop B. Virtual Desktop C. Window Manager D. Windows CardSpace

Computer Science & Information Technology

Find the error in each of the following program segments and explain how to correct it:

``` a) float cube(float); // function prototype cube(float number) { // function definition return number * number * number; } b) int randomNumber{srand()}; c) float y{123.45678}; int x; x = y; d) double square(double number) { double number{0}; return number * number; } e) int sum(int n) { if (0 == n) { return 0; } else { return n + sum(n); } } ```

Computer Science & Information Technology

All cell phones are examples of a personal computer.

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

Computer Science & Information Technology

A(n) ________ is a web site address that is contained inside a word

Fill in the blank(s) with correct word

Computer Science & Information Technology