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 platforms and products
  1. Remote Process Call

  2. Remote Process Communication

  3. Remote Procedure Call

  4. Remote Procedure Communication

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

RPC stands for Remote Procedure Call, a protocol where one program can execute a procedure/function on another computer across a network. It's about calling procedures (functions), not processes (running programs). The 'C' option correctly identifies the full form.

Multiple choice technology web technology
  1. a. SSL is be configured at Domain Level. All Servers in Domain use same setting

  2. b. SSL is be configured Server Level. Each Server in domain can have own SSL Setting

  3. c. SSL is configured at Cluster Level. All Servers that are part of Cluster use same setting.

  4. d. None of the above

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

In WebLogic, SSL is configured at the individual Server level. This design allows each server within a domain to have its own unique SSL settings, private keys, and digital certificates.

Multiple choice technology web technology
  1. True

  2. False

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

WebLogic clusters use multicast IP addresses for cluster-wide communication including heartbeat messages, health monitoring, and state synchronization. All server instances in a cluster listen on the same multicast address (port and IP) to receive broadcasts from other cluster members - this enables efficient one-to-many communication without requiring point-to-point connections between every server.

Multiple choice technology programming languages
  1. System managed Buffering

  2. System managed buffer

  3. Service managed Buffering

  4. None of the above

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

SMB stands for System Managed Buffering, a feature in mainframe systems where the system automatically manages buffer allocation and usage based on workload characteristics. This is distinct from manual buffer management. Option B is incorrect because the full term is Buffering, not buffer.

Multiple choice technology architecture
  1. POP3

  2. SMTP

  3. IMAP

  4. HTTP

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

Incoming Mail Service protocols are POP3 and IMAP, which retrieve emails from a server. SMTP is Simple Mail Transfer Protocol used exclusively for OUTGOING mail transmission, not incoming. HTTP is a web protocol, not a mail protocol at all. Therefore, SMTP is the correct answer as it is not used for incoming mail.

Multiple choice technology programming languages
  1. File Transmission Protocol

  2. File Transfer Protocol

  3. Transmission control Protocol

  4. Data Transmission protocol

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

FTP stands for File Transfer Protocol, which is a standard network protocol used to transfer computer files between a client and server on a computer network. Option A incorrectly substitutes 'Transfer' with 'Transmission.' Options C and D refer to different protocols entirely (TCP is a transport layer protocol, and there is no standard 'Data Transmission Protocol').

Multiple choice technology architecture
  1. port21

  2. port12

  3. port23

  4. port32

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

FTP (File Transfer Protocol) uses port 21 by default for the control connection. This is the well-known port assigned by IANA for FTP, and it's one of the fundamental network port numbers that administrators should memorize. The other options (12, 23, 32) are associated with different services or are not standard FTP ports.

Multiple choice technology architecture
  1. NTP- port123

  2. DNS- port53

  3. SSH- port22

  4. RDP- port3389

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

Windows Remote Desktop Protocol (RDP) uses port 3389 by default. This is the standard port for Terminal Services and Remote Desktop Connections. The other options listed are for different protocols: NTP uses port 123 for time synchronization, DNS uses port 53 for domain name resolution, and SSH uses port 22 for secure shell access.

Multiple choice technology architecture
  1. Simple Internet Protocol

  2. Session Internet Protocol

  3. Session Initiation Protocol

  4. Simple Initiation Protocol

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

SIP stands for Session Initiation Protocol, which is a signaling protocol used for initiating, maintaining, modifying, and terminating real-time sessions that involve video, voice, messaging, and other communications applications over IP networks. Options A and B incorrectly use 'Internet' instead of 'Initiation,' while Option D uses 'Simple' instead of 'Session.'

Multiple choice technology architecture
  1. True

  2. False

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

SIP (Session Initiation Protocol) supports multi-party calls through various architectures. It can use a Multipoint Control Unit (MCU) which acts as a central mixing bridge, or establish fully-meshed interconnections where each endpoint connects directly to every other endpoint, avoiding the need for multicast support which isn't always available.

Multiple choice technology web technology
  1. a. Socially secured Line

  2. b. Secure Sockets Line

  3. c. Socially secured Layer

  4. d. Secure Sockets Layer

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

SSL stands for Secure Sockets Layer. It's a cryptographic protocol designed to provide secure communication. 'Sockets' refers to the network socket abstraction, not 'Line' or other terms. SSL was the predecessor to TLS (Transport Layer Security). Note that SSL is now deprecated in favor of TLS.

Multiple choice technology platforms and products
  1. saprouter.ini

  2. saproute.ini

  3. saprouttab

  4. router.sap

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

SAP router uses a configuration file called saprouttab to define routing rules and access permissions. The file specifies which connections are allowed through the SAP router and to which destinations. Options A and B are similar but incorrect filenames, while D has the wrong extension and naming convention.

Multiple choice technology platforms and products
  1. Synchronous RFC

  2. Asynchronous and Transaction RFC

  3. Queued RFC

  4. Fast RFC

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

SAP supports four main types of RFC (Remote Function Call): Synchronous RFC (sRFC) where the calling system waits for the result, Asynchronous RFC (aRFC) where the calling system continues immediately, Transactional RFC (tRFC) where calls are executed once in order, and Queued RFC (qRFC) which extends tRFC with serialization by queue. 'Fast RFC' is not a standard RFC type in SAP's RFC architecture.