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. TCP/IP or UDP port on the server

  2. Reprsents the actual service inv used

  3. Exposes a <service> using a specific protocol binding

  4. All of the above

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

The element in WSDL represents a collection of elements, where each port exposes the service through a specific binding and endpoint address. The binding defines the protocol (SOAP over HTTP, for example) and message format, while the service element groups these ports together. This allows the same service to be exposed through multiple protocols or endpoints.

Multiple choice technology web technology
  1. Request.ClientAddress

  2. Request.UserHostAddress

  3. Request.IPAddress

  4. Request.Client.IPAddress

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

The Request.UserHostAddress property in ASP.NET returns the IP address of the client making the request. This is the standard way to retrieve the client's IP in both Web Forms and MVC. The other property names shown do not exist in the Request object.

Multiple choice technology web technology
  1. IIs speed connection/second

  2. ssl connection/second

  3. LAN speed connection/second

  4. WAN speed connection/second

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

The small lock icon on the browser status bar indicates an SSL (Secure Sockets Layer) or TLS connection. This means the communication between your browser and the website is encrypted and secure. Options A, C, and D incorrectly suggest it refers to connection speed measurements for different network types.

Multiple choice technology web technology
  1. SOAP

  2. Http

  3. RMI-IIOP

  4. RPC

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

Web services are called over standard web protocols, primarily HTTP/HTTPS. SOAP (Simple Object Access Protocol) is the most common protocol wrapper, but REST services use plain HTTP. RMI-IIOP and RPC are different protocols not typically used for web services.

Multiple choice technology mainframe
  1. HTTPS

  2. Connect Direct

  3. FTPS

  4. AS2

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

Connect Direct is a secure file transfer protocol specifically designed for mainframe systems. Unlike HTTPS or FTPS which are general-purpose protocols, Connect Direct is optimized for high-volume, reliable transfers between systems and mainframes. AS2 is used for B2B EDI transactions, not mainframe transfers.

Multiple choice technology packaged enterprise solutions
  1. to get the output from the third party system

  2. to prepare input from CLO to send to third party as request

  3. used as an interface to connect third party system

  4. none of the above

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

Obtainers are components in the connectivity framework responsible for preparing the input data from the core system (CLO) to structure the outgoing request for a third-party service. Distractors confuse this with processing response outputs or acting as the physical connection interface.

Multiple choice technology packaged enterprise solutions
  1. MOV

  2. AOM

  3. AMV

  4. AMO

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

The connectivity framework uses the AOM (Adapter-Obtainer-Mapper or similar) pattern to manage integrations. Other options like MOV, AMV, or AMO do not represent the architectural pattern designated for structuring request preparation, mapping, and external systems connectivity in this specific framework.

Multiple choice technology packaged enterprise solutions
  1. To get the output from the third party system

  2. To prepare input from CLO to send to third party as request

  3. Used as an interface to connect third party system

  4. None of the above

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

Accessors in the connectivity framework serve as interfaces or adapters that connect to third-party systems. They abstract the details of external system interactions and provide a consistent API for the application to communicate with external services. Accessors handle both outbound requests and inbound responses as the integration layer.

Multiple choice technology storage
  1. SCSI

  2. TCP/IP

  3. NFS

  4. HTTP

Reveal answer Fill a bubble to check yourself
B,C,D Correct answer
Explanation

NAS (Network Attached Storage) operates over standard network protocols: TCP/IP as the transport layer, NFS (Network File System) for Unix/Linux file sharing, and HTTP/HTTPS for web-based access and management. SCSI is a block-level protocol used by SAN, not NAS file-level storage.

Multiple choice technology web technology
  1. Message forwarding

  2. XML encryption and XML digital signature

  3. Any format to any format transformation

  4. Bridges Multiple Protocols

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

XS40 is a security-focused DataPower appliance. Its core capabilities include XML encryption, XML digital signature, and other security processing for SOA environments. Message forwarding, format transformation, and protocol bridging are functions that exist in DataPower but are not the primary distinguishing features of the XS40 specifically.

Multiple choice technology web technology
  1. True

  2. False

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

Multi-Protocol Gateway (MPGW) in DataPower can indeed use MQ GET and PUT queues to communicate via WebSphere MQ messages. MPGW supports multiple transport protocols including MQ, making this statement true. This integration allows asynchronous messaging patterns and loose coupling between services.

Multiple choice technology web technology
  1. XSL Accelerator

  2. Web service Proxy Service

  3. Web application Firewall Service

  4. XML Firewall Service

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

Web Service Proxy (WS-Proxy) in DataPower provides Service Level Monitoring (SLM) capabilities at the WSDL level. It can monitor service usage, track performance metrics, and enforce service-level agreements based on the WSDL definition. XSL Accelerator only handles transformations, Web Application Firewall focuses on security, and XML Firewall provides basic XML protection without WSDL-level monitoring.

Multiple choice technology web technology
  1. Web Application firewall

  2. Multi Protocol Gate Way (MPGW)

  3. XML Firewall

  4. WS-Proxy

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

Multi-Protocol Gateway (MPGW) is used when multiple transport protocols are required. Unlike Web Service Proxy (SOAP/HTTP only) or XML Firewall (HTTP/HTTPS), MPGW supports diverse protocols including MQ, JMS, HTTP, HTTPS, and more in a single service configuration. This makes it ideal for multi-transport scenarios.

Multiple choice technology operating systems
  1. ifconfig

  2. netstat -r

  3. ping

  4. none

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

The netstat -r command displays the kernel IP routing table, showing network routes and their properties. ifconfig shows network interface configuration but not routing tables, ping tests network connectivity, and 'none' is incorrect.