What is an Applet ?
Answers were Sorted based on User's Feedback
An Applet is a dynamic and interactive program that runs
inside a web page enabled by a java capable browser.
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sivasagar
Applet is output of a java program in a window which can
run with the help of java enabled browser.
Is This Answer Correct ? | 0 Yes | 2 No |
What is the default value of byte datatype in java?
What do you mean by stack?
What is binary tree in java?
Are arrays classes in java?
Write a function to find out longest palindrome in a given string?
Which is easier .net or java?
Is java a utf 8 string?
What is the collections api in java programming?
public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }
How many bytes is a string?
What is difference between synchronize and concurrent collection in java?
What is the access scope of a protected method?