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
  1. Connect Descriptor

  2. Connect identifier

  3. Connect String

  4. Connected Directory

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

When using the local naming method in Oracle Net Services, the service name provided by the client is resolved by looking up a connect descriptor in the tnsnames.ora file. This connect descriptor contains the protocol, host, port, and service name information needed to establish the connection. The connect identifier is what the user provides, while the connect string is the full resolution path. Option D is a distracter - there is no such thing as a Connected Directory in Oracle networking.

Multiple choice
  1. Internet

  2. Web browser

  3. Operating system

  4. DNS

  5. ISP

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

The Domain Name System (DNS) is a hierarchical distributed naming system for computers, services, or any resource connected to the Internet or a private network. An oft-used analogy to explain the Domain Name System is that it serves as the phone book for the Internet by translating human-friendly computer hostnames into IP addresses. For example, the domain name www.example.com translates to the addresses 192.0.43.10 (IPv4) and 2001:500:88:200::10 (IPv6).

Multiple choice
  1. Dedicated Server

  2. Directory Naming

  3. Oracle Connection Manager

  4. Heterogeneous Services

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

Oracle Connection Manager provides connection concentration and multiplexing, allowing hundreds of clients to share fewer server connections. Dedicated Server would require one server process per client (not scalable), Directory Naming is for service resolution, and Heterogeneous Services is for non-Oracle database access.

Multiple choice
  1. stateful

  2. stateless

  3. state-aware

  4. connection oriented

  5. None of these

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

HTTP does not consider the previous request. It does not maintain any information about the state, hence it is called stateless.

Multiple choice
  1. The TELNET protocol allows remote login services.

  2. In TELNET, the user's commands are not processed by the local operating system.

  3. It is a real time application.

  4. A new child process is created for a new client request.

  5. None of these

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

All the given options are incorrect.Answer: 5

Multiple choice
  1. Internetwork

  2. Protocol

  3. E-mail <o:p></o:p>

  4. Cables

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

The protocols are the set of rules that govern the transfer of data. They define how computers identify one another on a network, the form that the data should take in transit, and how this information is processed once it reaches its final destination.

Multiple choice
  1. Simple Mail Travel Protocol

  2. Simple Mail Transfer Protocol

  3. Simple Message Travel Protocol

  4. Secondary Memory Travel Protocol

  5. Secondary Memory Transfer Protocol

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

SMTP stands for Simple Mail Transfer Protocol.

Multiple choice
  1. the route with the smallest AD

  2. the route with the longest address and mask match to the destination

  3. the route with the highest bandwidth

  4. the route with the best combination of AD and lowest cost

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

The correct answer is B because routers use longest prefix match first - they look for the most specific route (longest subnet mask) that matches the destination IP. AD (administrative distance) is used only when multiple routes exist for the exact same prefix. Bandwidth and metric are considered later in the selection process.

Multiple choice
  1. The MAC address of Host A.

  2. The MAC address of the server network interface.

  3. The MAC address of router interface E1.

  4. The MAC address of router interface E0.

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

The correct answer is D because in a routed network, the source MAC address of frames received by a host is the MAC address of the router interface through which those frames arrived (E0 in this case). This occurs because the router re-encapsulates the packet with its own MAC address as the source when forwarding frames to the destination network.

Multiple choice
  1. 90

  2. 100

  3. 110

  4. 120

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

The administrative distance for OSPF routes is 110 by default. If a router has multiple routes from different routing protocols for the same destination, the route with the lowest administrative distance is chosen, regardless of the metrics of the other routes.

Multiple choice
  1. the MAC address of the interface of the router

  2. the destination Layer 4 port number

  3. the destination host address

  4. the next-hop address

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

A routing table entry contains the destination network address, subnet mask, next-hop address (or exit interface), and administrative distance/metric. The next-hop address is a critical component that tells the router where to forward packets for that destination network. MAC addresses and Layer 4 port numbers are not routing table components.

Multiple choice
  1. Host B has a defective Ethernet card.

  2. The default gateway on Host B is not correctly set.

  3. There is a Layer 2 problem between R2 and Host B.

  4. R2 does not have routes back to networks connected to R1.

Reveal answer Fill a bubble to check yourself
B Correct answer
Multiple choice
  1. R2(config-if)# frame-relay interface-dlci 201 broadcast

  2. R2(config-if)# frame-relay map ip 10.1.1.1 201 broadcast

  3. R3(config-if)# frame-relay map ip 10.1.1.1 301 broadcast

  4. R3(config-if)# frame-relay map ip 10.1.1.2 301 broadcast

  5. R2(config-if)# frame-relay map ip 10.1.1.3 201 broadcast

Reveal answer Fill a bubble to check yourself
B Correct answer