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
A
Correct answer
Explanation
JProbe uses port 52991 by default for communication between the profiler console and the profiled application. This port allows JProbe to attach to the JVM and collect profiling data in real-time. The other ports listed (52990, 52992, 52993) are incorrect default values, though JProbe may allow configuring a different port if the default is already in use or blocked by a firewall.
-
127.0.0.1
-
0.0.0.0
-
127.0.0.0
-
255.255.255.255
A
Correct answer
Explanation
127.0.0.1 is the standard IPv4 loopback address, universally designated as 'localhost' on all TCP/IP systems. It always refers to the local machine itself. 0.0.0.0 means 'all interfaces' or 'any address'. 127.0.0.0 is the network address, not a specific host. 255.255.255.255 is the limited broadcast address.
-
hostname
-
ifconfig
-
ipconfig
-
ipaddress
C
Correct answer
Explanation
On Windows systems, 'ipconfig' displays IP configuration including IP address and network adapter (MAC) information. 'hostname' only shows the computer name. 'ifconfig' is the Unix/Linux equivalent, not used on Windows. 'ipaddress' is not a standard command. On Windows, use ipconfig /all for complete adapter information.
-
flush
-
flushdns
-
ipconfig /flushdns
-
This cannot be done
C
Correct answer
Explanation
On Windows systems, 'ipconfig /flushdns' clears the local DNS resolver cache. This is useful when DNS changes aren't reflecting immediately or troubleshooting DNS issues. 'flush' and 'flushdns' are not valid standalone commands. The capability exists on Windows, Linux (systemd-resolve --flush-caches), and macOS (sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder).
-
Integrator
-
Ticket
-
Fork
-
Split-Join
A
Correct answer
Explanation
The Integrator shape in PEGA is specifically designed for sending data to and receiving data from external systems. It handles the communication interface, data transformation, and integration logic required for external system interactions. Ticket, Fork, and Split-Join shapes serve different flow processing purposes and are not for external system communication.
-
Slave Transmitter Mode
-
Master Reciever Mode
-
Slave Reciever Mode
-
Master Transmitter Mode
B
Correct answer
Explanation
In I2C communication, when the ARM processor acts as the Master and requests data from a Slave device (the keypad), the ARM master receives data bytes and acknowledges them. This role and direction correspond specifically to the Master Receiver Mode.
-
Web Agent
-
Node agent
-
None
-
Both
B
Correct answer
Explanation
In WebSphere and similar application server architectures, communication between the Deployment Manager (dmgr) and application servers flows through Node Agents. Node Agents act as intermediaries, managing server processes and forwarding administrative commands. Web Agents handle HTTP traffic, not administrative communication.
-
Plug in
-
Node agent
-
Both
-
None of the above
A
Correct answer
Explanation
Web servers use plugins to identify and route requests to appropriate application servers. The plugin contains routing configuration, server weights, and application mappings. Node Agents handle administrative communication, not request routing. The plugin acts as the router between web server and application tier.
-
Web Agent
-
Node agent
-
None
-
Both
B
Correct answer
Explanation
In WebSphere and similar application server architectures, communication between the Deployment Manager (dmgr) and application servers flows through Node Agents. Node Agents act as intermediaries, managing server processes and forwarding administrative commands. Web Agents handle HTTP traffic, not administrative communication.
-
Plug in
-
Node agent
-
Both
-
None of the above
A
Correct answer
Explanation
Webservers identify which application they need to communicate with through plugins, which are software components that extend the web server's functionality and enable it to route requests to specific applications. The plugin acts as an interface between the web server and the application server, determining the correct destination for incoming requests based on configuration rules. Node agents are not involved in this routing decision, making option A the correct answer.
-
Plug in
-
Node agent
-
Both
-
None of the above
-
Web Agent
-
Node agent
-
None
-
Both
B
Correct answer
Explanation
In WebSphere, the Node Agent acts as the communication bridge between the Deployment Manager (dmgr) and application servers. Each node has a Node Agent process that relays administrative commands and configuration updates from the dmgr to the app servers running on that node.
-
Create a DMZ between the two networks.
-
Create a VPN between the two networks.
-
Create a secure network connection between the two networks by using a combination of Java sockets and JSSE.
-
This is not possible, as the corporate firewalls would block this.
B
Correct answer
Explanation
A VPN (Virtual Private Network) creates a secure, encrypted tunnel between two networks over the internet, allowing safe connectivity through corporate firewalls. DMZ is for public-facing services, custom socket implementations are unnecessarily complex, and modern VPN technology makes this scenario feasible.
-
inetcpl.cpl
-
iexplore
-
inetwiz
-
ipconfig /all
A
Correct answer
Explanation
inetcpl.cpl is the Windows Control Panel command that opens Internet Properties. The others are: iexplore (Internet Explorer executable), inetwiz (Internet connection wizard), ipconfig (network config utility).
-
172.21.22.0
-
172.21.22.1
-
172.21.22.128
-
172.21.22.64
A
Correct answer
Explanation
The subnet mask 255.255.254.0 (/23) means 23 bits for network, 9 bits for hosts. IP 172.21.23.7 has third octet 23 (00010111). Mask's third octet is 254 (11111110). AND operation gives 22 (00010110). Network address is 172.21.22.0. The /23 subnet spans 172.21.22.0 to 172.21.23.255.