You must be able to take a binary number and convert it into both decimal and hexadecimal. To convert to decimal, just add up the 1s using their values. The values that are turned on with the binary number of 10110111 are 128+32+16+4+2+1=183. To get the hexadecimal equivalent, you need to break the eight binary digits into nibbles (4 bits), 1011 and 0111. By adding up these values, you get 11 and 7. In hexadecimal, 11 is B, so the answer is 0xB7.
This is a pretty simple question. A/28 is 255.255.255.240, which means that our block size is 16 in the fourth octent. 0,16, 32, 48, 64, 80, etc. The host is in the 64 subnet.
A receiving host has failed to receive all of the segments that it should acknowledge. What can the host do to improve the reliability of this communication session?
A receiving host can control the transmitter by using flow control ( TCP uses windowing by default). By decreasing the window size, the receiving host can slow down the transmitting host so the receiving host does not overflow its buffers.
An administrator issues the command "ping 127.0.0.1" from the command line prompt on a PC host named PC1. If an ICMP reply is received, what does this confirm?
A. The PC host PC1 has connectivity with a local host B. The PC host PC1 has connectivity with a Layer 3 device C. The PC host PC1 has a default gateway correctly configured D. The PC host PC1 has connectivity up to Layer 5 of the OSI model E. The PC host PC1 has the TCP/IP protocol stack correctly installed