InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
What Is Acid Property In Client Server Environment? |
|
Answer» ACID is a term coined by Andrew REUTER in 1983, which STANDS for Atomicity, Consistence, Isolation and DURABILITY. ACID property is the basic property for transaction processing:
ACID is a term coined by Andrew Reuter in 1983, which stands for Atomicity, Consistence, Isolation and Durability. ACID property is the basic property for transaction processing: |
|
| 2. |
What Is Meant By 2-tier Architecture In Client Server Environment? |
|
Answer» In 2-tier Client/Server systems, the application logic is either burried INSIDE the user interface on the client or within the database on the server. EXAMPLE: File SERVERS and Database servers with STORED procedures. In 2-tier Client/Server systems, the application logic is either burried inside the user interface on the client or within the database on the server. Example: File servers and Database servers with stored procedures. |
|
| 3. |
What Is Meant By Transparency In Client Server Environment? |
|
Answer» Transparency really MEANS hiding the network and its SERVERS from the USERS and EVEN the APPLICATION programmers. Transparency really means hiding the network and its servers from the users and even the application programmers. |
|
| 4. |
What Is A Web Server In Client Server Environment? |
|
Answer» This new MODEL of Client/Server consists of thin, protable, "universal" clients that talk to superfat servers. In the simplet form, a WEB server returns DOCUMENTS when clients ask for them by name. The clients and server COMMUNICATE using an RPC-like protocol called HTTP. This new model of Client/Server consists of thin, protable, "universal" clients that talk to superfat servers. In the simplet form, a web server returns documents when clients ask for them by name. The clients and server communicate using an RPC-like protocol called HTTP. |
|
| 5. |
What Is A Database Server In Client Server Environment? |
|
Answer» With a database SERVER, the client passes SQL REQUESTS as messages to the database server. The results of each SQL command are returned over the network. The server uses its own processing power to FIND the request data INSTEAD of passing all the records back to the client and then getting it find its own data. The result is a much more efficient use of distributed processing power. It is also known as SQL ENGINE. With a database server, the client passes SQL requests as messages to the database server. The results of each SQL command are returned over the network. The server uses its own processing power to find the request data instead of passing all the records back to the client and then getting it find its own data. The result is a much more efficient use of distributed processing power. It is also known as SQL engine. |
|
| 6. |
What Are Super Servers In Client Server Environment? |
|
Answer» These are fully-loaded machines which INCLUDES MULTIPROCESSORS, high-speed DISK arrays for intervive I/O and FAULT tolerant features. These are fully-loaded machines which includes multiprocessors, high-speed disk arrays for intervive I/O and fault tolerant features. |
|
| 7. |
What Is Message Oriented Middleware (mom) In Client Server Environment? |
|
Answer» MOM allows general purpose messages to be exchanged in a Client/Server system using message queues. Applications communicate over networks by simply PUTTING messages in the queues and getting messages from queues. It TYPICALLY PROVIDES a very simple high level APIs to its services. MOM's messaging and queuing allow clients and servers to communicate ACROSS a network without being linked by a private, dedicated, logical connection. The clients and server can run at different TIMES. It is a post-office like metaphor. MOM allows general purpose messages to be exchanged in a Client/Server system using message queues. Applications communicate over networks by simply putting messages in the queues and getting messages from queues. It typically provides a very simple high level APIs to its services. MOM's messaging and queuing allow clients and servers to communicate across a network without being linked by a private, dedicated, logical connection. The clients and server can run at different times. It is a post-office like metaphor. |
|
| 8. |
What Are The Two Types Of Oltp In Client Server Environment? |
| Answer» | |
| 9. |
What Is A Tp Monitor In Client Server Environment? |
Answer»
|
|
| 10. |
What Are All The Base Services Provided By The Os In Client Server Environment? |
Answer»
|
|
| 11. |
What Is A Transaction Server In Client Server Environment? |
|
Answer» With a TRANSACTION server, the client invokes remote procedures that reside on the server with an SQL database ENGINE. These remote procedures on the server execute a group of SQL statements. The network EXCHANGE consists of a SINGLE request/reply message. The SQL statements either all succeed or fail as a unit. With a transaction server, the client invokes remote procedures that reside on the server with an SQL database engine. These remote procedures on the server execute a group of SQL statements. The network exchange consists of a single request/reply message. The SQL statements either all succeed or fail as a unit. |
|
| 12. |
What Is Oltp In Client Server Environment? |
|
Answer» In the transaction server, the client component usually includes GUI and the server components usually consists of SQL transactions against a database. These applications are called OLTP (Online Transaction Processing) OLTP Applications typically,
In the transaction server, the client component usually includes GUI and the server components usually consists of SQL transactions against a database. These applications are called OLTP (Online Transaction Processing) OLTP Applications typically, |
|
| 13. |
What Are The Five Major Technologies That Can Be Used To Create Client/server Applications In Client Server Environment? |
Answer»
|
|
| 14. |
What Are General Middleware In Client Server Environment? |
|
Answer» It includes the COMMUNICATION STACKS, distributed directories, authentication services, network time, RPC, Queuing services ALONG with the network OS EXTENSIONS such as the distributed file and print services. It includes the communication stacks, distributed directories, authentication services, network time, RPC, Queuing services along with the network OS extensions such as the distributed file and print services. |
|
| 15. |
What Is Structured Query Language (sql)? |
|
Answer» SQL is a powerful set-oriented language which was developed by IBM research for the databases that adhere to the relational model. It consists of a short list of powerful, YET highly FLEXIBLE, commands that can be used to manipulate information collected in tables. Through SQL, we can manipulate and control sets of RECORDS at a time. SQL is a powerful set-oriented language which was developed by IBM research for the databases that adhere to the relational model. It consists of a short list of powerful, yet highly flexible, commands that can be used to manipulate information collected in tables. Through SQL, we can manipulate and control sets of records at a time. |
|
| 16. |
What Are The Two Broad Classes Of Middleware In Client Server Environment? |
Answer»
|
|
| 17. |
What Is An Object Server In Client Server Environment? |
|
Answer» With an object server, the Client/Server APPLICATION is WRITTEN as a set of communicating objects. Client object communicate with server objects using an Object Request Broker (ORB). The client invokes a method on a remote object. The ORB locates an instance of that object server class, invokes the requested method and RETURNS the RESULTS to the client object. Server objects must PROVIDE support for concurrency and sharing. The ORB brings it all together. With an object server, the Client/Server application is written as a set of communicating objects. Client object communicate with server objects using an Object Request Broker (ORB). The client invokes a method on a remote object. The ORB locates an instance of that object server class, invokes the requested method and returns the results to the client object. Server objects must provide support for concurrency and sharing. The ORB brings it all together. |
|