answersLogoWhite

0


Best Answer

ping

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which is not client server application?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When the client runs an application on a terminal server which of the client computer's resources does the application utilize?

When a client runs an application on a terminal computer the application execution takes place. The server uses the clients time zone resource.


What function does a server have?

Server's function is to respond for the client's application requests


Is eBay a peer to peer or client server application?

eBay is a P2P application.


How set client in tinasoft easycafe server?

hi! how i can add my new client PC in easycafe Server PC application for control it?!


Is eBay a peer-to-peer or clientserver application?

client-server


Advantage of using an application server?

By storing software on the application server, the application needs to be installed or upgraded on each client computer only one time


When a client runs an application on a terminal server which of the client computers resources does the application utilize?

You can get all the info on the TS on this link http://support.microsoft.com/kb/186498 Server Computer is the head of all the network computers that called as a client computer. Server computer main duty is the main storage of all the data of the client computers. Also, Server computer has the Main system that the client computers will be using.


X designates a user's terminal as hosting the server while the application is referred to as the client Does this make sense?

Yes, if you view it from the perspective that the X server is providing the display, rather than the client providing an application.


When a client computer connects to a network and requests the use of Microsoft Office 2010 for example the communication server delivers the software to the client computer?

the application server


How does a client application identify a server application on another computer on the network?

By the port number or the port address


What is communications at the application level?

Most applications used on the Internet or a local networkare client/server applications. Client applications, such as Internet Explorer, GoogleChrome, or Outlook, communicate with server applications such as a web server oremail server.


Features of clientserver architecture in SQL?

Client/Server Database Systems Client/server systems are constructed so that the database can reside on a central computer, known as a server, and be shared among several users. Users access the server through a client or server application: • In a two-tier client/server system, users run an application on their local computer, known as a client, that connects over a network to the server running SQL Server. The client application runs both business logic and the code to display output to the user, and is also known as a thick client. In a multitier client/server system, the client application logic is run in two locations: • The thin client is run on the user's local computer and is focused on displaying results to the user. • The business logic is located in server applications running on a server. Thin clients request functions from the server application, which is itself a multithreaded application capable of working with many concurrent users. The server application is the one that opens connections to the database server and can be running on the same server as the database, or it can connect across the network to a separate server operating as a database server. This is a typical scenario for an Internet application. For example, a server application can run on a Microsoft Internet Information Services (IIS) and service thousands of thin clients running on the Internet or an intranet. The server application uses a pool of connections to communicate with a copy of SQL Server. SQL Server can be installed on the same computer as IIS, or it can be installed on a separate server in the network. Having data stored and managed in a central location offers several advantages: • Each data item is stored in a central location where all users can work with it. Separate copies of the item are not stored on each client, which eliminates problems with users having to ensure they are all working with the same information. • Business and security rules can be defined one time on the server and enforced equally among all users. This can be done in a database through the use of constraints, stored procedures, and triggers. It can also be done in a server application. • A relational database server optimizes network traffic by returning only the data an application needs.