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. Network Layer

  2. Data layer

  3. Presentation Layer

  4. Session Layer

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

Routers operate at the Network Layer (Layer 3) of the OSI model. They make forwarding decisions based on IP addresses and route packets between different networks. Routers do not operate at Data Link, Presentation, or Session layers.

Multiple choice technology
  1. Session Layer

  2. Transport Layer

  3. Application

  4. Data Layer

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

Switches operate at the Data Link Layer (Layer 2) of the OSI model. They forward frames based on MAC addresses and maintain MAC address tables. Switches do not operate at Session, Transport, or Application layers.

Multiple choice technology
  1. Static Routing

  2. Dynamic Routing

  3. Default Routing

  4. NA

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

RIP (Routing Information Protocol) is a dynamic routing protocol. It automatically learns and maintains routes by exchanging information with other routers. Static routing requires manual configuration, and default routing is a special case of static routing.

Multiple choice technology
  1. Network Layer

  2. Data layer

  3. Presentation Layer

  4. Session Layer

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

Routers operate at the Network Layer (Layer 3) of the OSI model. Their primary function is to examine IP addresses in packet headers and determine the best path for forwarding packets between different networks. The Network Layer is responsible for logical addressing and routing decisions. The Data Link Layer handles MAC addresses, while Session and Presentation Layers are higher in the OSI stack.

Multiple choice technology
  1. 3

  2. 4

  3. 5

  4. 2

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

IP addresses are divided into 5 classes: Class A (0.0.0.0 - 127.255.255.255), Class B (128.0.0.0 - 191.255.255.255), Class C (192.0.0.0 - 223.255.255.255), Class D (224.0.0.0 - 239.255.255.255) for multicast, and Class E (240.0.0.0 - 255.255.255.255) reserved for experimental use. Classes A, B, and C are used for unicast addressing, while D and E serve special purposes.

Multiple choice technology
  1. 127.0.0.1

  2. 10.0.0.5

  3. 192.0.0.1

  4. 10.255.255.255

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

The IP address 127.0.0.1 is the standard loopback address used for testing network functionality on the local host. The entire 127.0.0.0/8 block is reserved for loopback, with 127.0.0.1 being the most commonly used address. When a packet is sent to this address, it never leaves the local machine but loops back through the network stack. This is used for diagnostics and testing TCP/IP services locally.

Multiple choice technology
  1. Session Layer

  2. Transport Layer

  3. Application

  4. Data Layer

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

Network switches operate at the Data Link Layer (Layer 2) of the OSI model. They use MAC addresses to forward frames within a network segment. Unlike routers that operate at Layer 3 and make decisions based on IP addresses, switches make forwarding decisions based on hardware (MAC) addresses. The Data Link Layer is responsible for node-to-node data transfer and error detection.

Multiple choice technology
  1. Application Layer

  2. Transport Layer

  3. Presentation Layer

  4. Physical Layer

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

FTP (File Transfer Protocol) operates at the Application Layer (Layer 7) of the OSI model. It provides file transfer services between client and server systems. As an application layer protocol, FTP relies on lower layers for transport (TCP), session management, and actual data transmission. The Application Layer is where user applications and network services interact directly with the network.

Multiple choice technology
  1. Static Routing

  2. Dynamic Routing

  3. Default Routing

  4. NA

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

RIP (Routing Information Protocol) is a Dynamic Routing protocol. It automatically learns and maintains routes by exchanging routing information with neighboring routers. RIP uses the distance-vector algorithm to calculate the best path based on hop count. Unlike static routing where routes are manually configured, dynamic routing protocols like RIP automatically adapt to network topology changes. Default routing is a special case of static routing.

Multiple choice technology packaged enterprise solutions
  1. Direct log in

  2. Using web version of Citrix log in

  3. Using RSA

  4. Direct Link

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

Kraft network access requires Citrix for secure remote connectivity. The web version of Citrix provides browser-based access without local client installation, which is the standard method for remote login to corporate networks like Kraft's. Direct login is blocked for security, RSA is for authentication, and Direct Link is not the proper access method.

Multiple choice technology web technology
  1. All

  2. Reliable

  3. Secure

  4. Transport

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

WCF supports multiple session types including Reliable sessions (guaranteed message delivery), Secure sessions (encrypted communication), and Transport sessions (connection-oriented messaging). The All option correctly encompasses all available session types.

Multiple choice technology web technology
  1. NetMSMQBinding

  2. BasicHTTPBinding

  3. NetPeerTCPBinding

  4. NetTCPBinding

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

NetTcpBinding is the WCF binding that supports port sharing through the TCP port sharing service. This allows multiple WCF services to share the same TCP port, which is useful for hosting multiple services on the same endpoint.

Multiple choice technology web technology
  1. NetNamedPipeBinding,NetTcpBinding,BasicHttpBinding

  2. NetNamedPipeBinding,BasicHttpBinding

  3. BasicHttpBinding

  4. NetNamedPipeBinding

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

Streaming in WCF is supported by NetNamedPipeBinding (for same-machine communication), NetTcpBinding (for cross-machine TCP communication), and BasicHttpBinding (for HTTP-based streaming). These bindings can transfer large messages as streams instead of buffering the entire message.

Multiple choice technology web technology
  1. Collection Size Limits

  2. Timeouts & Collection Size Limits

  3. Memory Allocation, Timeouts & Collection Size Limits

  4. Memory Allocatios & Collection Size Limits

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

WCF transports implement three categories of quotas: memory allocation limits prevent excessive buffer consumption, timeout quotas control operation duration, and collection size limits restrict the number of items in data structures. Together these protect services from resource exhaustion attacks.