Is age a discrete variable?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between a threads start() and run() methods? : Java thread
Does java linked list allow duplicates?
java is fullu object oriented or pure? why?
What is the difference between static class and normal class?
static inner classes means..?
Can the garbage collection be forced by any means?
Why java is considered as platform independent?
What are the traverses in Binary Tree?
Explain cookies?
Explain the difference between private, public, package and protected in java?
What are the benefits of operations 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"); } }