Computer Knowledge

Computer Networks

2,461 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 storage
  1. Network Data Method Protection

  2. Network Data Management Protocol

  3. Network Disaster Mitigation Procedure

  4. Network Data Management Privacy

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

NDMP (Network Data Management Protocol) is an open standard protocol for backup and recovery of network-attached storage. It enables centralized data management across heterogeneous storage devices.

Multiple choice technology
  1. Provides a well-defined service interface to the network layer

  2. Deals with transmission errors

  3. Regulating the flow of data so that slow receivers are not swamped by fast senders

  4. All of the above

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

The data link layer has three core functions: (1) providing a service interface to the network layer, (2) handling transmission errors via checksums/CRC and ARQ mechanisms, and (3) flow control to prevent fast senders from overwhelming slow receivers. All listed options are correct.

Multiple choice technology operating systems
  1. set the hostname

  2. set the time zone

  3. set the IP

  4. all the above

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

The set_parms command on HP-UX is a system administration utility that can configure various system parameters including hostname, timezone, and network settings like IP address. It provides an interactive menu or command-line interface for modifying system configuration parameters. The command consolidates multiple parameter-setting functions into one utility, making it versatile for system configuration tasks.

Multiple choice technology operating systems
  1. /etc/hosts

  2. /etc/ports

  3. /etc/services

  4. /etc/protocols

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

On HP-UX (and most Unix systems), /etc/services is the standard file that maps service names to port numbers and protocols. This file is used by network applications to resolve service names like 'http' or 'ssh' to their corresponding port numbers. /etc/hosts maps IP addresses to hostnames, /etc/protocols lists protocol numbers, and /etc/ports does not exist as a standard file. The services file is essential for network configuration and service name resolution.

Multiple choice technology packaged enterprise solutions
  1. default

  2. start profile

  3. Central instance –instance profile

    1. Application Instance – instance profile
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The parameter rdisp/mshost defines the host where the SAP Message Server is running. This is a global setting required by all instances to communicate, and therefore it is typically maintained in the Default Profile (DEFAULT.PFL) rather than instance-specific profiles.

Multiple choice technology packaged enterprise solutions
  1. DEFAULT.PFL

  2. TPPARAM

  3. TPPARAM.sap

  4. DOMAIN.CFG

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

The R/3 Transport System uses TPPARAM as its parameter configuration file. This file contains settings for transport tools (tp, R3trans) like transport directory, system connections, and buffer parameters. DEFAULT.PFL is used for instance profiles. DOMAIN.CFG relates to domain configuration. The .sap extension is not part of the TPPARAM filename. TPPARAM is central to Change and Transport System (CTS) operations.

Multiple choice technology packaged enterprise solutions
  1. default

  2. start profile

  3. Central instance –instance profile

    1. Application Instance – instance profile
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The parameter rdisp/mshost specifies the message server host and is found in the default profile (DEFAULT.PFL). This is because the message server host needs to be known system-wide, not just for specific instances. The default profile is read by all SAP instances during startup, making it the right place for this system-wide parameter.

Multiple choice technology packaged enterprise solutions
  1. DEFAULT.PFL

  2. TPPARAM

  3. TPPARAM.sap

  4. DOMAIN.CFG

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

DOMAIN.CFG is the parameter file used by the R/3 Transport System. This file contains configuration parameters for the transport tools (tp, R3trans). DEFAULT.PFL is the default instance profile, TPPARAM and TPPARAM.sap are not the correct transport parameter file names. The DOMAIN.CFG file is crucial for transport system configuration and must be properly maintained.

Multiple choice technology programming languages
  1. All Users of an application

  2. A Single session

  3. All users within a single tunnel

  4. None

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

Session state variables are specific to a single user session and cannot be accessed by other users or sessions. They persist only for the duration of that specific session and are isolated from other sessions. Option A is incorrect because session state is not shared across all users, and Option C is incorrect - sessions don't work at a 'tunnel' level.

Multiple choice technology web technology
  1. SOAP & TCP

  2. SOAP & REST

  3. REST & IP

  4. None

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

SOAP and REST are the two most widely used protocols for web services. SOAP uses XML for structured messaging, while REST uses HTTP methods (GET, POST, PUT, DELETE) with various data formats. TCP and IP are lower-level networking protocols, not web service protocols.