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 operating systems
  1. netstat

  2. netstat -s

  3. netstat -t

  4. all the above

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

The netstat -t command shows TCP connections, which are the active internet connections. Plain netstat shows all network connections, netstat -s shows summary statistics, and 'all the above' is incorrect since only the -t option specifically targets active internet connections.

Multiple choice technology performance
  1. ICA

  2. URL

  3. RDP

  4. HTML

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

URL-based recording level in LoadRunner always generates the web_submit_data function because it captures each request at the URL level regardless of the form submission method. HTML-based recording may generate web_submit_form or web_submit_data depending on the form structure. ICA and RDP are different protocols (Citrix and Remote Desktop).

Multiple choice technology platforms and products
  1. FTP Adapter

  2. AQ Adapter

  3. File Adapter

  4. RemoteFile Adapter

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

The FTP Adapter is used for file exchange on remote file systems using the FTP protocol. It enables BPEL processes to read, write, and list files on remote FTP servers. The AQ Adapter (option B) is for Oracle Advanced Queuing, the File Adapter (option C) is for local file system operations, and RemoteFile Adapter (option D) is not a standard Oracle adapter.

Multiple choice technology
  1. 443

  2. 334

  3. 553

  4. 8080

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

HTTPS uses port 443 by default for encrypted HTTP communication over TLS/SSL. Port 80 is for HTTP, 8080 is a common alternate HTTP port, and 334 and 553 are not standard HTTPS ports.

Multiple choice technology
  1. Global configuration information

  2. Protocol configuration information for both HTTP and non-HTTP protocols

  3. Application pool configuration, such as the process account information

  4. All of the above

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

WAS reads configuration at multiple levels: global server settings, protocol configurations for HTTP and non-HTTP protocols (like TCP), and application pool settings including process accounts. All these configuration types are essential for WAS to manage worker processes correctly.

Multiple choice technology
  1. Kernel-mode caching

  2. Kernel-mode request queuing

  3. Request pre-processing

  4. All of the above

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

HTTP.sys is the kernel-mode HTTP listener that provides request queuing, kernel-mode caching for improved performance, and request pre-processing before passing requests to worker processes. All these functions happen at the kernel level.

Multiple choice technology web technology
  1. OneWay

  2. Request/Response

  3. Duplex

  4. Request

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

WCF's default Message Exchange Pattern is Request/Response. Every operation call expects a response from the service, even if it's just an empty acknowledgment. To implement fire-and-forget messaging without waiting for a response, the operation must be explicitly marked with [OperationContract(IsOneWay=true)].

Multiple choice technology
  1. sRFC

  2. aRFC

  3. qRFC

  4. tRFC

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

QOS with Exactly Once (EO) delivery guarantee corresponds to tRFC (transactional RFC) in SAP, which ensures messages are delivered exactly once without duplication through transaction safety. sRFC is synchronous RFC, aRFC is asynchronous, and qRFC is queued RFC - none provide EO semantics.

Multiple choice technology
  1. FTP

  2. XML Messaging

  3. SMTP

  4. RFC

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

Loosely coupled applications use messaging-based communication, with XML being a standard format for message payloads. FTP is file transfer, SMTP is email protocol, and RFC is a document specification - not communication methods.

Multiple choice technology life sciences
  1. Self Hosting

  2. IIS Hosting

  3. WAS Hosting

  4. None of the above

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

WCF services support three hosting models: Self-hosting (in any managed application), IIS hosting (Internet Information Services for HTTP-based services), and WAS hosting (Windows Activation Service extends IIS to support non-HTTP protocols like TCP).

Multiple choice technology testing
  1. Throughput

  2. Windows Resources

  3. Time to First Buffer Breakdown

  4. Transaction Performance Summary

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

The Time to First Buffer (TTFB) Breakdown graph specifically analyzes how much time each web page component spends on server processing versus network transfer before the first buffer is received. Throughput shows data transfer rates, Windows Resources monitors client machine performance, and Transaction Performance Summary aggregates overall transaction times.