class A
{
class B
{
psvm(String args[])
{
}
}
}
if the prg saved in A.java whats the o/p?
Answers were Sorted based on User's Feedback
Answer / kalpana
output
-------
Inner classes cannot have static declarations
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / amulkumar
Compiletime Error saying----
The method main cannot be declared static; static methods
can only be declared in a static or top
level type
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / venkat
We can save it as A.java because there the main is included
in this class, And this also is not closed until the main
finction.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / hitesh kumar
Compilation error:-
The method main cannot be declared static; static methods
can only be declared in a static or top level type.
To make it happen you need to declare class B as static
class A{
static class B{
psvm(String arg[]){}
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / chanchal
Compilation error:-
Becouse Inner classes cannot have static declarations
| Is This Answer Correct ? | 0 Yes | 0 No |
The above code will be compiled succcessfully.
but at runtime it will throw an exception :
Exception in thread "main" java.lang.NoSuchMethodError: main
Because, Java Environment starts its execution from main
method. That method must be declared in the class which is
we are using to save our code.
If any query let me know....
| Is This Answer Correct ? | 2 Yes | 6 No |
What is the difference between pass by reference and pass by pointer?
What is meant by object oriented programming – oop?
What is command line used for?
What is a final class ?
What steps are taken when the OS shifts from one-thread execution to another?
What are the main uses of the super keyword?
They had given one progam final HashMap hm=new HashMap(); public void show() { hm.put("name",value); } in this prg here the final hashtable value can be changed in put method,its the prg run?
Can we store variables in local blocks?
what value will be return by the read() method once it reaches the end-of-file? a. Throws EOException b. Return null c. Return -1 d. Read method return nothing, because it is void method
Can a string be null?
can we create object for static class in java
14 Answers IAP Company, IBM, Marlabs, mPortal, TCS,
What is purpose of find feature?