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. single shared, network

  2. shared, secured, personal

  3. single,multi, advanced

  4. none of the above

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

Business Objects has three repository connection modes: shared mode (multiple users share same connection), secured mode (each user has separate credentials), and personal mode (local development). Option A is incorrect as 'single shared' is not a standard mode name, and option C's terminology doesn't match BO conventions.

Multiple choice technology
  1. True

  2. False

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

Telnet can be disabled on routers for security reasons. This is a best practice since Telnet transmits data in clear text. Modern routers use SSH (Secure Shell) as the secure alternative for remote administration.

Multiple choice technology web technology
  1. Transfer Control Protocol/Intranet Protocol

  2. Transmission Control Protocol / Internet Protocol

  3. Transfer Control Protocol / Intranet Protocol

  4. Transfer Control Protocol / Intranetworking Protocol

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

TCP/IP stands for Transmission Control Protocol/Internet Protocol. TCP handles reliable data delivery (transmission), while IP handles routing and addressing (internet). Together they form the foundational protocol suite of the Internet.

Multiple choice technology security
  1. SOAP and SAML

  2. SOAP and HTTP

  3. SSL and SOAP

  4. All

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

All these protocol combinations are valid and commonly used together. SOAP is an XML-based messaging protocol that typically runs over HTTP for transport (SOAP + HTTP). SSL/TLS can secure the HTTP layer, creating HTTPS, which means SOAP can also run over SSL (SSL + SOAP). SAML is an XML-based authentication/authorization framework that can be used alongside SOAP-based services. Protocol layering allows these combinations.

Multiple choice technology security
  1. Depends on how it is used

  2. Stateful protocol

  3. Transport Layer protocol

  4. Stateless protocol

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

SOAP is fundamentally stateless - each SOAP message contains all necessary information and doesn't rely on previous messages in the conversation. The protocol itself doesn't maintain session state between requests. Any stateful behavior must be implemented at the application layer using mechanisms like session IDs or tokens, not built into SOAP.

Multiple choice technology operating systems
  1. Ipconfig /all

  2. Tcpipconfig /showall

  3. Tcpinconfig /all

  4. Ping /ipconfig –all

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

The ipconfig command is the standard Windows utility for viewing IP configuration. The /all switch displays detailed information for all network adapters including IP address, subnet mask, default gateway, DNS servers, and more. Options B, C, and D use incorrect command names that don't exist in Windows.

Multiple choice technology operating systems
  1. Unattended remote installations

  2. Active Server Pages

  3. DHCP Server

  4. All of the above are included in Windows Server 2003

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

All three options listed - Unattended remote installations (RIS), Active Server Pages (ASP), and DHCP Server - are built-in features of Windows Server 2003. Since all individual options are included features, the correct answer is 'All of the above are included' which makes option D the right choice.

Multiple choice technology security
  1. SOAP and SAML

  2. SOAP and HTTP

  3. SSL and SOAP

  4. All

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

SOAP is an XML-based protocol that typically runs over HTTP for transport, making them commonly used together. SSL/TLS can secure the HTTP transport layer underneath SOAP. SAML is an authentication/authorization framework that can be integrated with SOAP-based services for identity management. These protocols serve different layers and can work in combination.

Multiple choice technology security
  1. Depends on how it is used

  2. Stateful protocol

  3. Transport Layer protocol

  4. Stateless protocol

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

SOAP is fundamentally a stateless protocol - each request contains all information needed to understand and process it, independent of previous requests. While state can be maintained at the application layer through headers or application logic, the SOAP protocol itself does not define session management or state tracking mechanisms. This statelessness enables scalability and loosely coupled service architectures.