answersLogoWhite

0


Best Answer

The program that runs on the client computer is the client program. Web-browser is a prominent example for client program.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

interpreted program

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

Script

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Applet

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a compiled program that runs on the client?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a compiled program that runs on the client inside of an interpreted program?

As far as I know, interpreted software does not run compiled software at all.


What is java virtucal mechine?

That refers to the program that runs the compiled Java program.


How do you use compiled in proverb?

The program compiled itself to give the correct result.


Give a brief description about compiled and interpreted high level languages?

Any high level language may be either compiled or interpreted. The difference is in the execution speed. Interpreted programs must re-learn how to do each statement in the program, whereas a compiled program is already in the machine code language of the hardware and runs much faster.


Does a server program request and receive services from a client program?

No. A server program receives and processes requests from a client program.


What is compiled time and run time?

Compile time is when the compiler translates your source code into computer language. Run time is when the actual program runs.


Why must the server program be executed before the client program?

A server program must be executed before the client program because once a client is run, it will attempt to initiate a connection with the server. If the server is down, then the client will not be able to make a connection.


Which program is always running in client server?

Server program is always running in client server.


Which variable is initialized once when program is compiled?

global and static


Why are comments not compiled in a computer program?

'cos' they are just comments.


Client program to request computer networking commands like to the server?

A prominent example is the FTP client program.


What are the differences between client-side programming and server-side programming?

All of us (or most of us) would have started programming in Java with the ever famous "Hello World!" program. If you can recollect, we saved this file with a .java extension and later compiled the program using javac and then executed the class file with java. Apart from introducing you to the language basics, the point to be noted about this program is that - "It is a client side program". This means that you write, compile and also execute the program on a client machine (e.g. Your PC). No doubt, this is the easiest and fastest way to write, compile and execute programs. But, it has little practical significance when it comes to real world programming.