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 networking
  1. Simple Mailer transport protocol

  2. Simple mail transport protocol

  3. Single Mail transport protocol

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

SMTP stands for Simple Mail Transfer Protocol. It is the standard protocol used for sending emails across the Internet. The other options use incorrect words like 'Mailer', 'transport' (lowercase), or 'Single', which do not represent the official acronym.

Multiple choice networking
  1. Network layer

  2. Presentaion layer

  3. Application layer

  4. Data Link layer

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

Encryption and decryption primarily occur at the Presentation layer (Layer 6) of the OSI model. This layer is responsible for translation, encryption, and compression of data to ensure it's in a format the application layer can use. Note: Some modern encryption also happens at the Application layer (SSL/TLS).

Multiple choice networking
  1. SMTP

  2. HTTP

  3. ICMP

  4. TCP/IP

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

SMTP (Simple Mail Transfer Protocol) is the standard protocol for sending email messages between servers. While the question is imprecise (email also uses POP3/IMAP for receiving), SMTP is the correct answer among the choices as it's the primary email protocol listed.

Multiple choice networking
  1. 21

  2. 22

  3. 28

  4. 25

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

Port 25 is the default port for SMTP (Simple Mail Transfer Protocol). This standard port is used for sending email between mail servers. Note: Port 587 is now commonly used for client submission with authentication, but 25 remains the traditional SMTP port.

Multiple choice networking
  1. 21

  2. 25

  3. 18

  4. 20

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

Port 21 is the default port for FTP (File Transfer Protocol) control connections. This port is used for establishing FTP sessions and sending commands. Port 20 is used for data transfer in active mode, but 21 is the primary control port.

Multiple choice networking
  1. Static

  2. Manual

  3. Direct

  4. Dynamic

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

Dynamic routers use routing protocols (RIP, OSPF, BGP) to automatically exchange network topology information and calculate optimal paths. Static routing requires manual configuration. Dynamic routing adapts to network changes automatically without administrator intervention.

Multiple choice networking
  1. de-multiplexing

  2. ANDing

  3. supernetting

  4. broadcasting

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

ANDing the destination IP address with the subnet mask extracts the network address. Comparing this with the local network address determines if the destination is on the same subnet. If network addresses match, traffic is local; otherwise, it's routed to a gateway.

Multiple choice networking
  1. ipconfig

  2. winipcfg

  3. ifconfig

  4. lconfig

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

The Linux ______ command is used to assign an internet address to a network interface.

A. ipconfig

B. winipcfg

C. ifconfig

D. lconfig

Now, let's go through each option and explain why it is right or wrong:

A. ipconfig: This option is incorrect because ipconfig is a command used in Windows operating systems to display the IP configuration of network interfaces. It is not a command used in Linux.

B. winipcfg: This option is incorrect because winipcfg is a command used specifically in Windows 9x/ME operating systems to display the IP configuration of network interfaces. It is not a command used in Linux.

C. ifconfig: This option is correct. ifconfig is a command used in Linux and Unix-like operating systems to configure network interfaces, including assigning internet addresses (IP addresses) to them.

D. lconfig: This option is incorrect because lconfig is not a valid command in Linux. It does not exist as a command used for assigning internet addresses to network interfaces.

Therefore, the correct answer is C. ifconfig.

Multiple choice networking
  1. 7

  2. 1

  3. 6

  4. 2

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

The Physical layer (Layer 1) transmits raw, unstructured bit streams over physical transmission media. It deals with electrical, mechanical, and functional specifications for activating and deactivating physical connections. Higher layers add structure and meaning to these bits.

Multiple choice networking
  1. 255.0.0.0

  2. 255.255.0.0

  3. 255.255.255.0

  4. 255.255.255.255

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

Class C IP addresses use the first three octets for the network portion, resulting in a default subnet mask of 255.255.255.0. 255.0.0.0 is the default for Class A, and 255.255.0.0 is the default for Class B.

Multiple choice networking
  1. True

  2. False

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

ARP maps IP addresses (Layer 3) to MAC addresses (Layer 2) to enable communication on local networks. When a device needs to send data to a local IP address, it broadcasts an ARP request to discover the corresponding MAC address. This resolution is essential for Ethernet communication.