R
Q. What is the output of the below Java program?
class Road { static void show() { System.out.println("Inside static method."); } } public class TestingMethods10 { public static void main(String[] args) { Road.show(); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. _________ Keyword is used to invoke the current object.
Q. What will be the output of the following code
Q. What is true about private constructor?
Q. Which of these is true for interfaces in java?
Q. A Java reference is comparable to ___ in C language.
Q. Iterator returned by CopyOnWriteArrayList is?
Q. In Java, which data type is used to store numbers with decimal points?
Q. Predict the output of following Java program.
Q. Automatic type conversion is possible in which of the possible cases?
Discusssion
Login to discuss.