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 architecture
  1. Simple Network Mail Protocol

  2. System Network Management Protocol

  3. Simple Network Management Protocol

  4. System Network Mail Protocol

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

SNMP stands for Simple Network Management Protocol, used for managing and monitoring devices on IP networks. It allows administrators to collect information from network devices, modify device configurations, and receive alerts about network issues. The 'Simple' reflects its straightforward design compared to more complex management systems.

Multiple choice technology architecture
  1. Lightweight Direct Access Protocol

  2. Limited Directory Access Protocol

  3. Limited Direct Access Protocol

  4. Lightweight Directory Access Protocol

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

LDAP stands for Lightweight Directory Access Protocol, used for accessing and maintaining distributed directory information services over a network. It's commonly used for authentication and user management, allowing centralized storage of login credentials. The 'Lightweight' indicates it's a simpler version of the older X.500 directory protocol.

Multiple choice technology architecture
  1. Internet Control Message Protocol

  2. Intranet Control Message Protocol

  3. Internet Control Mail Protocol

  4. Intranet Control Mail Protocol

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

ICMP stands for Internet Control Message Protocol, used by network devices to send error messages and operational information. It's primarily used for diagnostics like ping and traceroute to test network connectivity and identify problems. The 'Control Message' describes its role in network communication management.

Multiple choice technology architecture
  1. Address Resolution Protocol

  2. Address Return Protocol

  3. Adverse Resolution Protocol

  4. Adverse Return Protocol

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

ARP (Address Resolution Protocol) is a network protocol that maps IP addresses to MAC addresses in local networks. When a device needs to communicate with another on the same network, it uses ARP to discover the physical hardware address associated with the target IP address.

Multiple choice technology architecture
  1. Return Address Resolution Protocol

  2. Reverse Adverse Resolution Protocol

  3. Reverse Address Resolution Protocol

  4. Return Adverse Resolution Protocol

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

RARP (Reverse Address Resolution Protocol) is the inverse of ARP - it allows a device to obtain its IP address from a server using its known MAC address. This is particularly useful for diskless workstations that need to discover their IP configuration at boot time.

Multiple choice technology architecture
  1. Booting Protocol

  2. Bootloader Protocol

  3. Bootstrap Protocol

  4. Bootbias Protocol

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

BOOTP (Bootstrap Protocol) is a network protocol used to automatically assign an IP address to a device connecting to a network. It was the precursor to DHCP and provides a mechanism for diskless workstations to obtain their IP address and boot configuration from a server.

Multiple choice technology architecture
  1. Peer-to-Peer Tunneling Protocol

  2. Point-to-Point Tunnel Protocol

  3. Point-to-Point Tunneling Protocol

  4. Peer-to-Peer Tunnel Protocol

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

PPTP (Point-to-Point Tunneling Protocol) is a network protocol used to implement Virtual Private Networks (VPNs). It encapsulates PPP packets within IP packets, creating secure tunnels for data transmission across public networks like the Internet.

Multiple choice technology programming languages
  1. SFTP

  2. EFTP

  3. HTTP

  4. XSLT

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

HTTP (HyperText Transfer Protocol) defines 8 standard methods including CONNECT, PATCH, PUT, POST, GET, DELETE, HEAD, OPTIONS, and TRACE. It is a stateless protocol meaning each request is independent, and it has a four-letter name. HTTP is the foundation of data communication on the World Wide Web.

Multiple choice technology
  1. SUPER MAIL TRANSPORTATION PROTOCOL

  2. SPEED MEDIA TRANSFER PROTOCOL

  3. SIMPLE MAIL TRANSFER PROTOCOL

  4. SOLLOTION MATIC TRAVEL PEST

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

SMTP (Simple Mail Transfer Protocol) is the standard protocol for sending email across the Internet. It defines how email messages are transmitted between mail servers. Option A incorrectly uses 'Transportation' instead of 'Transfer', B is unrelated to email, and D appears to be a nonsensical string.

Multiple choice technology architecture
  1. Binding

  2. portType

  3. Port

  4. Message.

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

In WSDL, the Port element specifies the network address (endpoint) for a binding. It combines a binding (which defines the protocol and data format) with an actual network location (URL) where the service can be accessed. Binding defines protocol format, portType defines operations, and Message defines data structures.

Multiple choice technology architecture
  1. Message

  2. Binding

  3. Port

  4. portType.

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

The Message element in WSDL provides an abstract definition of the data being transmitted. It defines the structure and types of data exchanged without specifying the concrete format or protocol. Binding maps messages to protocols, Port specifies addresses, and portType defines operations.

Multiple choice technology architecture
  1. Bad Request

  2. Unauthorized

  3. Request Timeout

  4. Proxy Authentication Required

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

HTTP 407 specifically indicates that proxy authentication is required - the client must authenticate itself with a proxy server before the request can be forwarded. This differs from 401 (Unauthorized), which is for direct server authentication. Options A (400), B (401), and C (408) are different status codes: Bad Request, Unauthorized, and Request Timeout respectively.

Multiple choice technology
  1. Digital Transmission Protocol

  2. DeskTop Publishing

  3. Data Type Programming

  4. Document Type Processing

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

DTP (DeskTop Publishing) is the standard industry abbreviation for software and systems used to create documents and visual materials for printing. Digital Transmission Protocol, Data Type Programming, and Document Type Processing are not common abbreviations - the correct answer is well-established in the publishing/software industry.

Multiple choice technology web technology
  1. System.Network.DisableTranscoder()

  2. Response.Cache.SetNoTransforms()

  3. Microsoft.Network.DisableProxyServer()

  4. Request.Cache.SetNoTransforms()

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

Response.Cache.SetNoTransforms() adds an HTTP header that instructs mobile network transcoders and proxy servers not to modify the content, ensuring your mobile page renders as designed. The other options don't exist in the .NET framework - System.Network and Microsoft.Network don't have such methods, and it's Response not Request.