What is data structure in java?
No Answer is Posted For this Question
Be the First to Post Answer
What happens if a constructor is declared private?
How will you call an Applet using Java Script Function?
In Serialization, whether you will use Static variables?
Why there is no call by reference in java?
List out benefits of object oriented programming language?
What is return null in java?
What is the function of static 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"); } }
There are 2 classes, 1 LandAnimal and another WaterAnimal. There is another class Animal which wants to have the properties of both LandAnimal and WaterAnimal. How will you design this situation?
Why java applets are more useful for intranets as compared to internet?
Is array dynamic in java?
Can a function return a function?