What is a arraylist in java?
What do you mean by Remote procedure call?
In how many ways we can do synchronization in java?
What are 5 boolean operators?
What is meant by Static query and Dynamic query?
How to know the host from which Applet is originated?
Where can I find jdk in my computer?
Can we override singleton class?
What happens if we override only equals?
Why does it take so much time to access an applet having swing components the first time?
Why array is used in java?
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"); } }
What is ‘has a’’ relationship in java?