What is use of inner class in java?
No Answer is Posted For this Question
Be the First to Post Answer
Why Java is not purely object oriented?
50 Answers Elitecore, Persistent, Reliance, Wipro,
why java uses class level type casting ?
In the below example, what will be the output?
Explain the difference between throw and throws in java?
How many bits is a boolean?
Scenario: There are 1 to 100 numbers. Each number should be keep in the each column like from A column to Z column ie 1 to 26. From 27 to 52 should be in 2nd row in the excel sheet. This has to be continue till 100. How do you write Java program and what are various methods.
class A { public void disp(int a,int b) { System.out.println("hai"); } } class B { public void disp(int a,int b,int c) { System.out.println("hai"); } } above program is overloading or overriding?
How to Sort Strings which are given in List and display in ascending order without using java api.
What are the types of collections in java?
What do you understand by an io stream?
I have a Person object with 5 variables and I want to store them in a file called Person.txt. What should I do?
________ exception must be either caught or specified in throws class of the method.