Which of the following IP addresses belongs to a Class B network?
Recall that Class B IP addresses have their first octet between 128 and 191.
Class B IP addresses range from 128.0.0.0 to 191.255.255.255. The address 172.16.0.1 falls within this range.
Consider the following simplified steps of resolving a domain name to an IP address. Which step happens third?
- User types a domain name in the browser.
- Browser checks local cache for IP address.
- Request sent to recursive DNS server.
- Recursive server queries root DNS server.
Think about the order from user action to external queries.
First, the user types the domain name, then the browser checks its cache. If not found, it sends a request to the recursive DNS server, which is the third step.
Which statement correctly compares IPv4 and IPv6 addresses?
Recall the length and notation style of each IP version.
IPv4 addresses are 32 bits long and written as four decimal numbers separated by dots. IPv6 addresses are 128 bits long and written as eight groups of hexadecimal numbers separated by colons.
Which of the following is a valid domain name according to standard rules?
Domain names cannot start with a hyphen or have consecutive dots.
Valid domain names can contain letters, numbers, and hyphens but cannot start or end with a hyphen, nor have consecutive dots. 'example.com' follows these rules.
You have an IPv4 subnet with the mask 255.255.255.240. How many usable host IP addresses are available in this subnet?
Count the number of bits available for hosts and subtract network and broadcast addresses.
The subnet mask 255.255.255.240 corresponds to 28 bits for network and 4 bits for hosts. 2^4 = 16 addresses total. Subtract 2 for network and broadcast addresses, leaving 14 usable hosts.