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
-
single shared, network
-
shared, secured, personal
-
single,multi, advanced
-
none of the above
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.
-
Integrator
-
Ticket
-
Fork
-
Split-Join
A
Correct answer
Explanation
The Integrator shape in PEGA is used to send and receive data from external systems. It handles the communication interface between the PEGA application and external systems. Ticket is for routing, Fork is for parallel processing, and Split-Join is for subprocess coordination.
-
Integrator
-
Ticket
-
Fork
-
Split-Join
A
Correct answer
Explanation
The Integrator shape in PRPC flows is specifically designed for bi-directional communication with external systems. It enables receiving data via services and sending data via connectors, acting as the gateway for all external system interactions.
-
Integrator
-
Ticket
-
Fork
-
Split-Join
A
Correct answer
Explanation
The Integrator shape in PRPC flows is specifically designed for sending and receiving data from external systems. Ticket is for case processing, Fork branches flow execution, and Split-Join handles parallel processing - only Integrator manages external system communication.
-
AssignTo
-
SendTo
-
DirectTo
-
none of the above
A
Correct answer
Explanation
Router activities in PRPC use the AssignTo parameter to specify which work queue or user receives the assignment. SendTo and DirectTo are not valid parameters in standard router activities.
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.
-
Transfer Control Protocol/Intranet Protocol
-
Transmission Control Protocol / Internet Protocol
-
Transfer Control Protocol / Intranet Protocol
-
Transfer Control Protocol / Intranetworking Protocol
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.
-
SOAP and SAML
-
SOAP and HTTP
-
SSL and SOAP
-
All
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.
-
Depends on how it is used
-
Stateful protocol
-
Transport Layer protocol
-
Stateless protocol
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.
-
Ipconfig /all
-
Tcpipconfig /showall
-
Tcpinconfig /all
-
Ping /ipconfig –all
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.
-
Unattended remote installations
-
Active Server Pages
-
DHCP Server
-
All of the above are included in Windows Server 2003
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.
-
SOAP and SAML
-
SOAP and HTTP
-
SSL and SOAP
-
All
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.
-
Depends on how it is used
-
Stateful protocol
-
Transport Layer protocol
-
Stateless protocol
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.