Explain class A{}
class B{}
class C{}
all the three classes are saved in a single file name, what
the name should i provide to the file ,in what file name
should i run the program? Ple Explain
Answer Posted / anandhi
class a
{
}
class b extends a
{
}
class c
{
public static void main(String arg[])
{
b b1=new b();
....
}
}
so file name c...
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Is a boolean 1 bit?
How to use arraylist in java netbeans?
Which method must be implemented by all threads?
How do you find the independent variable?
Can we sort list in java?
Which is better arraylist or vector?
How does system arraycopy work in java?
What is scope of a variable?
Explain the inheritance?
Explain java thread life cycle.
java Technical questions asked by JPMC
Is java programming easy?
What are static blocks and static initalizers in java ?
How to convert string to char and vice versa?
Why multiple inheritance is not supported by java?