If the IP address of a system is 184.222.4.36/16, what class address is it?

What will be an ideal response?


An address of 184.222.4.36/16 is a Class B address because the value of the first portion of the address is within the Class B range of 128 to 191.
 

Computer Science & Information Technology

You might also like to view...

Predict the output of the following nested loops:

``` int n = 1; while(n <= 10) { int m = 10; while(m>=1) { cout << n << “ times “ << m << “ = “ << n*m << endl; m--; } n++; } ```

Computer Science & Information Technology

The signature of a function consists of ____________.

A. parameter list B. return type, function name, and parameter list C. function name D. function name and parameter list

Computer Science & Information Technology

Which of the following correctly uses the sum function to add the values stored in the cells A5 to A12?

A) =sum(A5-A12 ) B) sum(A5,A12 ) C) =sum(A5,A12 ) D) =sum(A5:A12)

Computer Science & Information Technology

What do well-known port numbers designate?

A. Well-known port numbers designate specific applications running on a server. B. Well-known port numbers designate router ports. C. Well-known port numbers designate malicious applicaitons D. Well-known port numbers are only used to attack networks

Computer Science & Information Technology