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 technology web technology
  1. Listener

  2. Message Channel Agent(MCA)

  3. Trigger Monitor

  4. Process

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

In message-oriented middleware like IBM MQ, the Message Channel Agent (MCA) is the specific software program responsible for transmitting messages from a transmission queue over a communication link to a target queue. This distinguishes it from listeners, which wait for connections, or trigger monitors, which start applications.

Multiple choice technology web technology
  1. MQI Channels

  2. Message Channel

  3. Listener

  4. Triggering

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

Message Channels are the communication pathways that connect queue managers to each other for message transfer. MQI channels connect clients to servers, while listeners accept incoming connections. Triggering is for starting applications based on queue depth, not inter-manager transfer.

Multiple choice technology web technology
  1. Message Channel

  2. MQI Channel

  3. Listener

  4. Command Server

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

MQI Channels (Message Queue Interface channels) specifically connect MQSeries clients to server queue managers. Message channels connect queue managers to each other. The client uses the MQI channel to communicate with its server's queue manager.

Multiple choice technology databases
  1. Input

  2. Variable

  3. Return

  4. Output

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

The Return port (R) is specific to unconnected Lookup transformations - it returns the lookup value to the calling expression. Connected lookups use Input/Output/Lookup ports in the data flow. The Return port does not exist in connected lookup configuration because connected lookups pass data through the pipeline.

Multiple choice technology operating systems
  1. /etc/hostname

  2. /etc/resolv.conf

  3. /etc/sysconfig/network

  4. /etc/named.conf

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

On Linux systems, the DNS client is configured through the /etc/resolv.conf file, which contains nameserver IP addresses, search domains, and other resolver options. This file is read by the DNS resolver library to determine which DNS servers to query. The /etc/hostname file (A) stores the system hostname, /etc/sysconfig/network (C) is for Red Hat-style network configuration, and /etc/named.conf (D) is for configuring a DNS server (not client).

Multiple choice technology operating systems
  1. to assign single site to many ip address

  2. assigning many ip address to single domain name

  3. assigning multiple virtual address to single ethenet interface

  4. to host more number of site(different domain) on single webserver

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

Virtual hosting allows a single web server to host multiple websites with different domain names on the same machine/IP. Option D correctly describes this. Options A, B, and C incorrectly describe IP address assignments rather than the core purpose of virtual hosting.

Multiple choice technology platforms and products
  1. Repository server name and port number

  2. Repository server name

  3. Repository server name and host name

  4. Host name and port number

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

The Informatica Repository Server is identified by its host name and port number, not by its repository server name alone. The host name specifies the machine where the server runs, and the port number is the communication endpoint. The repository server name is an internal identifier, not used for connection.

Multiple choice technology
  1. 20 bytes

  2. 400 bytes

  3. 40 bytes

  4. 4000 bytes

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

C is correct because VoIP packet headers sum to 40 bytes: IP header (20 bytes minimum) + UDP header (8 bytes) + RTP header (12 bytes) = 40 bytes total overhead per voice packet. A (20 bytes) accounts only for IP. B (400 bytes) and D (4000 bytes) are grossly inflated and not representative of actual protocol header sizes.

Multiple choice technology
  1. 99

  2. 150

  3. 105

  4. 55

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

B is correct because DHCP option 150 is the Cisco-specific option that carries the TFTP server IP address, which Cisco IP phones use to download their configuration files. Option 55 is the parameter request list. Option 99 is for the tftp server name (not IP). Option 105 is for the swap server (used in older systems).

Multiple choice technology
  1. tcp 69

  2. udp 69

  3. tcp 59

  4. udp 59

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

B is correct because TFTP (Trivial FTP) is a UDP-based protocol that uses port 69 by default - Cisco IP phones use TFTP over UDP to download configuration and firmware files. A is wrong because TFTP doesn't use TCP. C and D are incorrect because port 59 is not a standard TFTP port (TCP or UDP).

Multiple choice technology
  1. SIP

  2. SCCP

  3. H.323

  4. MGCP

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

D is correct because MGCP (Media Gateway Control Protocol) is specifically designed for centralized gateway control, where Media Gateway Controllers (Call Agents) control Media Gateways - all call intelligence resides in the controller. A (SIP) is a peer-to-peer distributed protocol. B (SCCP) controls IP phone endpoints, not gateways. C (H.323) is also peer-to-peer, not centralized gateway control.

Multiple choice technology
  1. HTTP

  2. FTP

  3. TCP

  4. NTP

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

SIP (Session Initiation Protocol) is modeled after HTTP, using a similar text-based request-response architecture with methods like INVITE, ACK, and BYE. It shares HTTP's header format and syntax, making it resemble HTTP closely while being designed for VoIP signaling.