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 testing
  1. 52991

  2. 52992

  3. 52993

  4. 52990

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. 127.0.0.1

  2. 0.0.0.0

  3. 127.0.0.0

  4. 255.255.255.255

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. hostname

  2. ifconfig

  3. ipconfig

  4. ipaddress

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. flush

  2. flushdns

  3. ipconfig /flushdns

  4. This cannot be done

Reveal answer Fill a bubble to check yourself
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).

Multiple choice technology platforms and products
  1. Integrator

  2. Ticket

  3. Fork

  4. Split-Join

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology embedded technologies
  1. Slave Transmitter Mode

  2. Master Reciever Mode

  3. Slave Reciever Mode

  4. Master Transmitter Mode

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. Web Agent

  2. Node agent

  3. None

  4. Both

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. Plug in

  2. Node agent

  3. Both

  4. None of the above

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. Web Agent

  2. Node agent

  3. None

  4. Both

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. Plug in

  2. Node agent

  3. Both

  4. None of the above

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology architecture
  1. Create a DMZ between the two networks.

  2. Create a VPN between the two networks.

  3. Create a secure network connection between the two networks by using a combination of Java sockets and JSSE.

  4. This is not possible, as the corporate firewalls would block this.

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology operating systems
  1. inetcpl.cpl

  2. iexplore

  3. inetwiz

  4. ipconfig /all

Reveal answer Fill a bubble to check yourself
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).

Multiple choice technology
  1. 172.21.22.0

  2. 172.21.22.1

  3. 172.21.22.128

  4. 172.21.22.64

Reveal answer Fill a bubble to check yourself
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.