Computer Knowledge

Computer Networks

2,614 Questions

Computer networks involve the architecture, protocols, and security measures used for digital communication. This collection covers OSI model layers, IP addressing, data transmission, and cryptographic standards. These concepts are vital for the computer knowledge sections of banking and government exams.

OSI model layersNetwork protocolsIP subnet maskingData encryption standardsServer configurationsNetwork commands

Computer Networks Questions

Multiple choice technology
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Application layer firewalls operate at layer 7 and can perform network address translation as part of their traffic inspection and routing functions. While NAT is more commonly associated with layer 3 devices, ALFs can translate IP addresses and ports as they manage application-level connections and sessions.

Multiple choice technology
  1. Rapid Prototyping Capability

  2. Router Protocol Converter

  3. Remote Power Controller

  4. Remote Procedure Call

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

RPC stands for Remote Procedure Call, which enables a program to execute a procedure on another address space (commonly on another computer) as if it were a local procedure call. It's a fundamental concept in distributed systems and client-server architectures.

Multiple choice technology
  1. Time Control Protocol

  2. Transmission Control Protocol

  3. Transport Control Protocol

  4. Transfer Control Protocol

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

TCP stands for Transmission Control Protocol, which is a core protocol of the Internet Protocol Suite. It provides reliable, ordered, and error-checked delivery of data between applications running on hosts communicating over an IP network. TCP establishes a connection before data transfer and ensures all packets arrive intact and in order.

Multiple choice technology
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Every host (end-user device) implements the transport layer because hosts need to run applications that use transport layer services like TCP and UDP. The transport layer is essential for process-to-process communication and is implemented in the operating system of end hosts.

Multiple choice technology
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

When you examine a packet on an Ethernet link, the headers appear in REVERSE order of encapsulation: Ethernet header (outermost), then IP header, then TCP header, then HTTP header (innermost). Each layer wraps the data from the layer above it.

Multiple choice technology
  1. transmission

  2. propagation

  3. processing

  4. queueing

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Transmission delay depends on packet size because it's the time to push all bits onto the link (L/R where L is packet length). Propagation delay depends on distance and medium speed, not packet size. Processing and queueing delays are independent of packet length.

Multiple choice technology
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

TTL is an IP header field used to prevent packets from looping indefinitely by decrementing at each router. It is NOT part of TCP - TCP operates at the transport layer while TTL is a network-layer mechanism.

Multiple choice technology architecture
  1. NNTP

  2. SNMP

  3. IGMP

  4. ARP

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

IGMP (Internet Group Management Protocol) operates at Layer 3 (Network Layer) for multicast group management. NNTP is Application Layer. SNMP is Application Layer. ARP operates at Layer 2 (Data Link Layer) for MAC address resolution.

Multiple choice technology architecture
  1. Physical Layer

  2. Transport Layer

  3. Network Layer

  4. Data Link Layer

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

In TCP/IP model, the Media Layer (or Network Interface Layer) consists of Physical Layer (hardware signaling), Data Link Layer (framing, MAC addressing), and Network Layer (routing, IP addressing). Transport Layer is part of the Host-to-Host layers, not Media Layer.

Multiple choice technology embedded technologies
  1. LIN

  2. CAN

  3. I2C

  4. SPI

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

LIN (Local Interconnect Network) uses a single-wire communication line, making it cost-effective for simple automotive applications. CAN uses two wires (CAN High and CAN Low), I2C uses two lines (SDA and SCL), and SPI typically uses four or more lines (MOSI, MISO, SCK, CS) for communication.