Can a class be private in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is thread life cycle in java?
Explain a few methods of overloading best practices in java?
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
Write a java program to check if a number is prime or not?
what difference between throw and throws in exception handling.
Can we use catch statement for checked exceptions when there is no chance of raising exception in our code?
Why do we need autoboxing in java?
can u override the start() method of Thread class
What is compareto?
String is a immutable objects . it means that string does not change........... But it will be chang......... { String s="kapil"; String s1="raj"; String s=s1; then print(.......) The String has been changed .. how it is possible and why its called immutable objects
what is collections in java?
How many types of packages are there in Java?