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
-
Listener
-
Message Channel Agent(MCA)
-
Trigger Monitor
-
Process
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.
-
MQI Channels
-
Message Channel
-
Listener
-
Triggering
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.
-
Message Channel
-
MQI Channel
-
Listener
-
Command Server
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.
-
Input
-
Variable
-
Return
-
Output
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.
-
Remedy 7.0
-
RMDB
-
CMDB
-
CCMDB
A
Correct answer
Explanation
Voice quality requires one-way delay under 150 ms to maintain conversational quality without echo or talker overlap. This is a ITU-T G.114 standard for telephony. Delays above this threshold cause perceptible degradation in conversation flow, making 150 ms the industry benchmark.
-
/etc/hostname
-
/etc/resolv.conf
-
/etc/sysconfig/network
-
/etc/named.conf
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).
-
route print
-
route -n
-
ifconfig
-
netstat -rn
B,D
Correct answer
Explanation
In Linux, both route -n and netstat -rn display the routing table and default gateway numerically. route print is a Windows command, and ifconfig displays network interface configurations.
-
to assign single site to many ip address
-
assigning many ip address to single domain name
-
assigning multiple virtual address to single ethenet interface
-
to host more number of site(different domain) on single webserver
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.
-
Repository server name and port number
-
Repository server name
-
Repository server name and host name
-
Host name and port number
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.
-
20 bytes
-
400 bytes
-
40 bytes
-
4000 bytes
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.
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).
-
tcp 69
-
udp 69
-
tcp 59
-
udp 59
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).
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.
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.