If there is no implementation of MARKER INTERFACE in java. Then how compiler come to know about specification.
2 6538public 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"); } }
2390Which of the following can be referenced by a variable? A. The instance variables of a class only B. The methods of a class only C. The instance variables and methods of a class
2 16694I am unable to find or learn about print command. I have a graphical program in core java in applet but i want to give print command but i have coding for that so if anyone know about this plz mail me on avdhesh_chauhan007@yahoo.co.in
2092A abstract class extending an abstract class.Super class has both abstract and non-abstract methods.How can we implement abstract and non-abstract mehtods? Explain with snippet
3 6163
Is integer passed by reference in java?
Can we clone singleton object?
Which is illegal identifier in java?
What is navigable map in java?
Should database connections be singleton?
How do you use substring in java?
Explain garbage collection in java?
Why call by value prevents parameter value change?
Is null false in java?
Is java based on c?
How to perform merge sort in java?
Write a function to print Fibonacci series and Tribonacci series?
What are sets in java?
What is a local, member and a class variable?
What is == and === in javascript?