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
-
Simple Network Mail Protocol
-
System Network Management Protocol
-
Simple Network Management Protocol
-
System Network Mail Protocol
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.
-
Lightweight Direct Access Protocol
-
Limited Directory Access Protocol
-
Limited Direct Access Protocol
-
Lightweight Directory Access Protocol
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.
-
Internet Control Message Protocol
-
Intranet Control Message Protocol
-
Internet Control Mail Protocol
-
Intranet Control Mail Protocol
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.
-
Address Resolution Protocol
-
Address Return Protocol
-
Adverse Resolution Protocol
-
Adverse Return Protocol
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.
-
Return Address Resolution Protocol
-
Reverse Adverse Resolution Protocol
-
Reverse Address Resolution Protocol
-
Return Adverse Resolution Protocol
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.
-
Booting Protocol
-
Bootloader Protocol
-
Bootstrap Protocol
-
Bootbias Protocol
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.
-
Peer-to-Peer Tunneling Protocol
-
Point-to-Point Tunnel Protocol
-
Point-to-Point Tunneling Protocol
-
Peer-to-Peer Tunnel Protocol
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.
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.
-
SUPER MAIL TRANSPORTATION PROTOCOL
-
SPEED MEDIA TRANSFER PROTOCOL
-
SIMPLE MAIL TRANSFER PROTOCOL
-
SOLLOTION MATIC TRAVEL PEST
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.
-
Binding
-
portType
-
Port
-
Message.
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.
-
Message
-
Binding
-
Port
-
portType.
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.
-
Bad Request
-
Unauthorized
-
Request Timeout
-
Proxy Authentication Required
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.
-
Digital Transmission Protocol
-
DeskTop Publishing
-
Data Type Programming
-
Document Type Processing
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.
C
Correct answer
Explanation
SSH (Secure Shell) is the standard protocol and command for securely logging into remote hosts. It provides encrypted communication over an unsecured network. SSL (A) is for secure web connections, while options B (slt) and D (sl-rem) are not standard Unix commands.
-
System.Network.DisableTranscoder()
-
Response.Cache.SetNoTransforms()
-
Microsoft.Network.DisableProxyServer()
-
Request.Cache.SetNoTransforms()
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.