answersLogoWhite

0

no

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Can java program can be written without main?

No, main() class is required to execute the program as that's the starting point of the program.


How do you execute a Java program?

You can run a Java application from the command line using "java <name of the class>"


What is the name of the command to run a java program?

javausage: java path\FooBar will execute path\FooBar.class


What mean by multithreaded program?

A multithreaded program is one that has multiple threads in execution. They may execute parallel to one another or totally without relation to one another. In Java you can create multithreaded programs using Java threads.


How do you compile and execute Java program in which we find the highest of any five numbers?

In the same way as you would compile and execute any other Java program. Compile: use the "javac" command. Or use the built-in "compile" command in your favorite IDE. Execute: Use the "java" command. Or use the built-in "run" command in your favorite IDE.


How do you compile and execute a java program which finds out the highest of any five numbers?

it will be destroyed.


How do you create and execute a java program?

You can create a Java program by writing it in any text editor - for example Notepad, or Notepad++. You can compile it with the "javac" command, and, if it compiles without errors, run it with the "java" command. Or better, simplify your life by installing an IDE (integrated development environment), such as Netbeans or Eclipse.


What is the default program to open a jar file to execute a program?

You can open jar files with command prompt, Winrar or java.


Differentiate Java applet and Java servlet?

Java Applet is an application designed to transmit on internet to execute on java compatible browsers. Java Servlet is a server side program used to provide services to clients.


How do you write and execute java program?

In theory, you can write a Java program in just about any text editor; then you can compile it with the "javac" command, and - if the compilation works without errors - run it with the "java" command. In practice, and especially for new programmers, I would recommend that you get a good Java IDE, which lets you do everything in a single environment, and clearly shows where there are errors, among other benefits.


How do you write and execute the java program?

In theory, you can write a Java program in just about any text editor; then you can compile it with the "javac" command, and - if the compilation works without errors - run it with the "java" command. In practice, and especially for new programmers, I would recommend that you get a good Java IDE, which lets you do everything in a single environment, and clearly shows where there are errors, among other benefits.


In java public static voidmain function denotes what?

Java's main function denotes the entry point into the execution of your program.