When a device sends an ARP request, what information is it typically seeking?

  • The DNS server's IP address.
  • The default gateway's IP address.
  • The physical (MAC) address corresponding to an IP address.
  • The public IP address of a web server.
When a device sends an Address Resolution Protocol (ARP) request, it is typically seeking the physical (MAC) address that corresponds to a specific IP address. ARP is used to resolve the layer-2 MAC address for devices on the same local network.

Which transmission medium is typically used for telephone lines and local area networks?

  • Fiber Optic Cable
  • Coaxial Cable
  • Twisted Pair Copper Wire
  • Microwave
Twisted Pair Copper Wire is the transmission medium typically used for telephone lines and local area networks (LANs). It is cost-effective and widely used for short to medium-distance data transmission, including telephone connections and LANs.

The __________ protocol ensures that data packets are delivered in the correct sequence and without errors.

  • ICMP (Internet Control Message Protocol)
  • IP (Internet Protocol)
  • TCP (Transmission Control Protocol)
  • UDP (User Datagram Protocol)
TCP (Transmission Control Protocol) - TCP is responsible for ensuring that data packets are delivered in the correct sequence and without errors. It provides error-checking, sequencing, and flow control during data transmission, making it a reliable choice for applications that require data integrity.

What happens if a segment arrives at its destination but is out of order due to network congestion?

  • The segment is discarded
  • The segment is held in a buffer until the missing segments arrive
  • The segment is immediately delivered to the application layer
  • The segment is split into smaller segments
When a segment arrives out of order due to network congestion, it is typically held in a buffer until the missing segments arrive. This buffer helps reassemble the data in the correct order before delivering it to the application layer to prevent data corruption or loss.

What is the primary purpose of NAT in a home network environment?

  • Provide security for the network
  • Translate private IP addresses into a single public IP address
  • Enhance network speed
  • Prevent network congestion
The primary purpose of NAT (Network Address Translation) in a home network is to translate private IP addresses used within the local network into a single public IP address that is used for communication with external networks, like the internet. This allows multiple devices within the home network to share a single public IP address, providing a layer of security and conserving IP address resources.

In the context of DNS, what is the main function of a recursive resolver?

  • Managing domain registrations
  • Providing reverse DNS lookups
  • Resolving DNS queries on behalf of clients
  • Updating DNS records
A recursive resolver is responsible for resolving DNS queries on behalf of clients. It performs the entire process of DNS resolution, starting from querying authoritative name servers to returning the IP address associated with a domain.

Which routing protocol would be least suitable for large-scale networks due to its limitation in hop counts?

  • BGP
  • EIGRP
  • OSPF
  • RIP
RIP (Routing Information Protocol) would be the least suitable for large-scale networks due to its limitation in hop counts. RIP uses hop count as a metric, which can lead to routing loops and suboptimal paths in large networks. More advanced protocols like OSPF, EIGRP, and BGP are better suited for large-scale environments.

What security enhancement is commonly added to FTP to encrypt its data transfer?

  • HTTPS (Hypertext Transfer Protocol Secure)
  • SSH (Secure Shell)
  • TLS (Transport Layer Security)
  • VPN (Virtual Private Network)
FTP (File Transfer Protocol) data transfer is commonly secured using TLS (Transport Layer Security) encryption. This encryption ensures that data sent over FTP is protected from eavesdropping and tampering, making it a safer choice for transferring sensitive information.

When a user connects to a remote network in a manner that it appears they are directly connected to that network's private internal system, they are using a _______.

  • Firewall
  • Router
  • Switch
  • VPN
When a user connects to a remote network in a way that makes it seem as if they are directly connected to the network's private internal system, they are using a VPN (Virtual Private Network). A VPN creates a secure, encrypted tunnel over an untrusted network (like the internet) to provide remote access with the appearance of being locally connected.

Which protocol is used to resolve an IP address into a MAC address within a local network?

  • IP
  • DNS
  • ARP
  • DHCP
ARP (Address Resolution Protocol) is used to resolve an IP address into a MAC address within a local network. When a device needs to communicate with another device on the same local network, it uses ARP to find the MAC address associated with the destination IP address.