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
What is the purpose of a network mask in an IP address?
-
To identify the network portion of an IP address
-
To identify the host portion of an IP address
-
To provide security to network data
-
To store network data
A
Correct answer
Explanation
A network mask is used to determine which part of an IP address represents the network address and which part represents the host address, allowing devices to identify the network they belong to.
Which network protocol is used for sending email messages?
D
Correct answer
Explanation
SMTP (Simple Mail Transfer Protocol) is a network protocol specifically designed for sending email messages between devices on a network, allowing users to send and receive emails.
Which network protocol is used for browsing the internet?
C
Correct answer
Explanation
HTTP (Hypertext Transfer Protocol) is a network protocol used for transferring web pages and other resources between devices on a network, allowing users to access and browse the internet.
What is the purpose of a DNS server in a network?
-
To connect devices to the network
-
To forward data packets between networks
-
To provide security to network data
-
To translate domain names into IP addresses
D
Correct answer
Explanation
A DNS server is responsible for translating domain names, which are human-readable website addresses, into IP addresses, which are numerical addresses used by devices to communicate on a network.
Which network protocol is used for streaming audio and video content?
D
Correct answer
Explanation
RTP (Real-time Transport Protocol) is a network protocol specifically designed for streaming audio and video content over a network, ensuring smooth and reliable transmission of multimedia data.
Which protocol is used for signaling in UMTS?
-
GPRS Tunneling Protocol (GTP)
-
Internet Protocol (IP)
-
User Datagram Protocol (UDP)
-
Transmission Control Protocol (TCP)
A
Correct answer
Explanation
GTP is used for signaling in UMTS. It is a tunnel protocol that encapsulates IP packets and sends them over a GPRS network.
Which of the following is NOT a common redundancy protocol used in networks?
-
Hot standby routing protocol (HSRP)
-
Virtual Router Redundancy Protocol (VRRP)
-
Gateway Load Balancing Protocol (GLBP)
-
Transmission Control Protocol (TCP)
D
Correct answer
Explanation
Transmission Control Protocol (TCP) is a transport layer protocol, not a redundancy protocol.
Which of the following is NOT a common type of router redundancy?
-
Hot standby routing protocol (HSRP)
-
Virtual Router Redundancy Protocol (VRRP)
-
Gateway Load Balancing Protocol (GLBP)
-
Spanning Tree Protocol
D
Correct answer
Explanation
Spanning Tree Protocol is a network protocol that prevents loops in a network, not a type of router redundancy.
Which of the following is NOT a common spanning tree protocol?
-
Spanning Tree Protocol (STP)
-
Rapid Spanning Tree Protocol (RSTP)
-
Multiple Spanning Tree Protocol (MSTP)
-
VLAN Trunking Protocol (VTP)
D
Correct answer
Explanation
VLAN Trunking Protocol (VTP) is a protocol used to manage VLANs, not a spanning tree protocol.
Which protocol is responsible for managing the radio resources and scheduling data transmissions in HSPA networks?
-
Radio Resource Management (RRM)
-
Media Access Control (MAC)
-
Internet Protocol (IP)
-
Transmission Control Protocol (TCP)
A
Correct answer
Explanation
Radio Resource Management (RRM) is the protocol that dynamically allocates radio resources, such as time slots and power levels, to ensure efficient utilization of the network and optimal performance for data transmissions.
Which protocol is responsible for managing the mobility of mobile devices as they move between different cells in an HSPA network?
-
Media Access Control (MAC)
-
Internet Protocol (IP)
-
Transmission Control Protocol (TCP)
-
Mobility Management (MM)
D
Correct answer
Explanation
Mobility Management (MM) is the protocol that handles the mobility of mobile devices in HSPA networks, ensuring seamless handover between cells and maintaining connectivity as devices move.
Which networking protocol is commonly used for real-time communication in multiplayer games?
-
TCP (Transmission Control Protocol)
-
UDP (User Datagram Protocol)
-
HTTP (Hypertext Transfer Protocol)
-
FTP (File Transfer Protocol)
B
Correct answer
Explanation
UDP is a connectionless protocol that is often preferred for real-time communication in multiplayer games due to its low overhead and ability to handle data loss, making it suitable for fast-paced and latency-sensitive applications.
What is the maximum number of hosts that can be accommodated in a network with a subnet mask of 255.255.255.192?
A
Correct answer
Explanation
The number of hosts in a network is determined by subtracting 2 from the number of bits in the host portion of the subnet mask. In this case, the host portion is 8 bits (32 - 24 = 8), so the maximum number of hosts is 2^8 - 2 = 254. However, since the network address and broadcast address also occupy two addresses, the actual number of usable hosts is 254 - 2 = 252.
Which of the following is a valid IPv4 address?
-
192.168.0.256
-
255.255.255.255
-
10.0.0.1
-
172.16.0.1
C
Correct answer
Explanation
A valid IPv4 address consists of four octets, each ranging from 0 to 255. The address 192.168.0.256 is invalid because the fourth octet exceeds 255. The address 255.255.255.255 is the broadcast address and cannot be assigned to a host. The address 172.16.0.1 is invalid because it falls within the reserved range of 172.16.0.0 to 172.31.255.255.
Which of the following is a valid subnet mask for a network with 24 hosts?
-
255.255.255.128
-
255.255.255.192
-
255.255.255.224
-
255.255.255.240
C
Correct answer
Explanation
To determine the appropriate subnet mask for a network with 24 hosts, we need to calculate the number of bits required for the host portion of the IP address. Since 24 hosts require 5 bits (2^5 = 32), the subnet mask should have 27 bits in the network portion (32 - 5 = 27). The subnet mask 255.255.255.224 has 27 bits in the network portion and 5 bits in the host portion, making it a valid choice.