-
What are the five major technologies that can be used to create Client/Server applications?
Database ServersTP MonitorsGroupwareDistributed ObjectsIntranets.
-
What is ACID property?
ACID is a term coined by Andrew Reuter in 1983, which stands for Atomicity, Consistence, Isolation and Durability.
-
What is meant by Asymmetric Multiprocessing (AMP)?
It imposses hierarchy and a division of labour among processors. Only one designated processor, the master, controls (in a tightly coupled arrangement) slave processors dedicated to specific functions.
-
What are Stored procedures?
A stored procedure ia s named collection of SQL statements and procedural logic that is compiled, verified and stored in a server database. It is typically treated like any other database object. Stored procedures accept input parameters so that a single procedure can be used over the network by multiple clients using different input data. A single remote message triggers the execution of a collection...
-
-
What are the characteristics of Client/Server?
ServiceShared resourcesAsymmentrical protocolsTransparency of locationMix-and-matchMessage based exchangesEncapsulation of servicesScalabilityIntegrityClient/Server computing is the ultimate "Open platform". It gives the freedom to mix-and-match components of almost any level. Clients and servers are loosely coupled systems that interact through a message-passing mechanism.
-
What is meant by Asymmetrical protocols?
There is a many-to-one relationship between clients and server. Clients always initiate the dialog by requesting a service. Servers are passively awaiting for requests from clients.
-
What is meant by Mix-and-match?
The ideal Client/Server software is independent of hardware and Operating System software platform. It should be able to mix-and-match client and server platforms.
-
What are the types of Servers?
File serversDatabase serversTransaction serversGroupware serversObject serversWeb servers
-
What is Groupware server?
Groupware addresses the management of semi-structured information such as text, image, mail, bulletin boards and the flow of work. These Client/Server systems have people in direct contact with other people.
-
What is meant by Middleware?
Middleware is a distributed software needed to support interaction between clients and servers. In short, it is the software that is in the middle of the Client/Server systems and it acts as a bridge between the clients and servers. It starts with the API set on the client side that is used to invoke a service and it covers the transmission of the request over the network and the resulting response.It...
-
What are the two broad classes of middleware?
General middlewareService-specific middleware
-
What are the most typical functional units of the Client/Server applications?
User interfaceBusiness Logic andShared data.
-
What is meant by 3-Tier architecture?
In 3-tier Client/Server systems, the application logic (or process) lives in the middle tier and it is separated from the data and the user interface. In theory, the 3-tier Client/Server systems are more scalable, robust and flexible.Example: TP monitor, Web.
-
What are the building blocks of Client/Server?
The clientThe server andMiddleware
-
What are the Classification of clients?
Non-GUI clients - Two types are Non-GUI clients that do not need multi-tasking(Example: Automatic Teller Machines (ATM), Cell phone)Non-GUI clients that need multi-tasking (Example: ROBOTs)GUI clientsOOUI clients
-
What is meant by Transparency?
Transparency really means hiding the network and its servers from the users and even the application programmers.
-
What is the difference between trigger and rule?
The triggers are called implicitly by database generated events, while stored procedures are called explicitly by client applications.
-
-
Client Server Interview Questions
Ans