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
Whats the difference between notify() and notifyall()?
What is unicode in java?
What is double checked locking in singleton?
What is the difference between variable declaration and variable initialization?
What is java command?
What is compiler and what its output.
Can we extend singleton class in java?
why java does not support unsigned keyword?
How to create a custom exception?
Define a java class.
Why set is used in java?
What causes memory leaks in java?
Tell me about different OOPS concepts.
How do you control extraneous variables?
Explain about complier design(phases)