What is local variable and instance variable?
No Answer is Posted For this Question
Be the First to Post Answer
What are File and RandomAccessFile classes?
Compare java and python.
How many bytes is a string in java?
Difference between string s= new string (); and string s = "abv";?
How would you convert bytes to string?
What is ternary operator in java?
How does compareto method work?
What does void * mean?
Can we override the main method?
What is struts in java?
Are private methods final?
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"); } }