Computer Knowledge

Computer Networks

2,461 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. 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
  1. normal

  2. aborted

  3. timeout

  4. all of the above

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

PHP connection handling recognizes three distinct states: normal (successful completion), aborted (user disconnect), and timeout (script execution limit exceeded). These states allow scripts to detect and respond appropriately to different connection termination scenarios. All three are valid connection states in PHP's connection handling model.

Multiple choice technology operating systems
  1. Agent need to click on start button type CONFIG in run option. And will get c:\winnt window than he needs to type ipconfig and press enter

  2. Agent need to click on start button type RUN in run option. And will get c:\winnt window than he needs to type ipconfig and press enter

  3. Agent need to click on start button type CMD in run option. And will get c:\winnt window than he needs to type ipconfig and press enter

  4. None of the above

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

To run ipconfig on Windows, you must open the command line prompt. Running CMD in the Start menu Run dialog opens the command prompt window, allowing the execution of ipconfig. Typing CONFIG or RUN inside the run box will not launch the command shell.

Multiple choice technology
  1. TCP/IP

  2. FTP

  3. UDP

  4. APDU

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

Smart cards communicate using APDU (Application Protocol Data Unit) commands. TCP/IP, FTP, and UDP are network protocols, not smart card communication protocols. APDU is the standard command-response format for smart card interactions.

Multiple choice technology operating systems
  1. remote

  2. internet

  3. vpn

  4. telnet

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

Telnet is a Unix command that allows you to connect to remote systems over a network using the Telnet protocol. It provides interactive access to servers and other network devices. While SSH is more secure today, telnet was historically the standard way to connect to remote machines. Among the options, telnet is the only actual Unix command - remote, internet, and vpn are concepts, not commands.

Multiple choice technology architecture
  1. Secure Sockets Level

  2. Secure Sockets Layer

  3. Simple Sockets Layer

  4. Simple Sockets Level

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

SSL stands for Secure Sockets Layer, a cryptographic protocol designed to provide secure communication over a computer network. It's the predecessor to TLS (Transport Layer Security) and was widely used for securing web transactions.

Multiple choice technology architecture
  1. Simple Mail Transfer Protocol

  2. Simple Message Transfer Protocol

  3. Secure Mail Transfer Protocol

  4. Secure Message Transfer Protocol

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

SMTP stands for Simple Mail Transfer Protocol, which is the standard protocol for sending email messages between servers. Option A correctly identifies this as a mail protocol, not a message protocol (options B and D are incorrect), and it uses 'Mail' not 'Message' in the name. The 'Simple' part is also key - it's not 'Secure' (options C and D are wrong).

Multiple choice technology architecture
  1. Internet Mail Access Protocol

  2. Intranet Message Access Protocol

  3. Internet Message Access Protocol

  4. Intranet Mail Access Protocol

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

IMAP stands for Internet Message Access Protocol, which allows email clients to access messages on a server. Option C is correct with 'Message' (the content being accessed) and 'Access' (the action). Options A and D incorrectly use 'Mail' instead of 'Message'. Options B and D incorrectly use 'Intranet' instead of 'Internet'.

Multiple choice technology
  1. Peer to Peer

  2. Point to Point

  3. Packet to Packet

  4. Point to Packet

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

P2P stands for Peer to Peer, a distributed network architecture where participants are equals. Option A correctly uses 'Peer' (participants) and 'Peer to Peer' describes equal status. Options B, C, and D incorrectly use 'Point' and 'Packet' - P2P is about peer relationships, not points or packets.

Multiple choice technology architecture
  1. File Transfer Protocol

  2. File Transmission Protocol

  3. Folder Transmission Protocol

  4. Folder Transfer Protocol

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

FTP stands for File Transfer Protocol, a standard network protocol used to transfer files between a client and server on a computer network. It's commonly used for uploading files to websites and downloading files from servers. The 'Transfer' accurately describes its primary function of moving files between computers.

Multiple choice technology architecture
  1. Network Transfer Protocol

  2. Network Time Protocol

  3. Network Transmission Protocol

  4. Network Timeless Protocol

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

NTP stands for Network Time Protocol, designed to synchronize clocks on computer networks to within a few milliseconds of UTC. It ensures all devices on a network maintain accurate, consistent timekeeping, which is critical for logging, authentication, and coordinated operations. The 'Time' in the name directly reflects its purpose.