Answer:
C. 2^16
Explanation:
In Computer Networking, there are five (5) classes of IP addresses, these include;
- Class A
- Class B
- Class C
- Class D
- Class E
The various classes of IP address are represented by the value of their first octet. The first octet value of Class B is 128-191 with a subnet mask of 16.
Hence, from the IP address 149.130.x.y where x and y are 8-bit numbers. The x and y equals 16-bit numbers.
Thus, 2^16 devices can connect to the Wellesley network before we run out of IP addresses.
A subject of what people say at the time, most used, famous at the present time
function myFunction(num){
n = 0;
total = 1;
while (n < num){
total *= (num - n);
n+=1;
}
return total;
}
alert(myFunction(6));
I'm not too proficient in JavaScript but here's what the function would look like. I hope this helps!