What are the main uses of the super keyword?
No Answer is Posted For this Question
Be the First to Post Answer
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 are the methods of object class ?
Does apple use java?
How arrays are stored in memory in java?
Have you used any version control ? if so explain about it?
what is web.xml?and its use?
What is the difference between java and .Net?
what is synchronization? : Java thread
What is meant by Java interpreter?
What is compareto () in java?
Give differences between Quicksort & Mergesort. When should these sorts be used and what is their running time?
What is finalize()?