Why java is not a pure object oriented language?
Answer Posted / java&
public class Main {
public static void main(String[] args) {
new A().path1.fun6();
new A().path2.fun4();
new F().path1.fun1();
new I.C().path1.path2.path2.path2.fun4();
}
}
class A extends F
{
void fun1()
{
System.out.print("Class A");
}
}
class B extends A
{
void fun2()
{
System.out.print("Class B");
}
}
interface I
{
C path1=new C();
class C extends B
{
void fun3()
{
System.out.print("Interface I");
}
}
}
interface J
{
D path2=new D();
class D extends B
{
void fun4()
{
System.out.print("Interface J");
}
}
}
class E implements I,J
{
void fun5()
{
System.out.print("Interface J");
}
}
class F extends E
{
void fun6()
{
System.out.println(" class F");
}
}
/* What is this? */
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is type inference in java8?
How does multithreading take place on a computer with a single cpu in java programming?
what is daemon thread and which method is used to create the daemon thread? : Java thread
How to handle a web browser resize operation?
Which method cannot be overridden in java?
Why do we declare a class static?
What is downcasting?
Can we start a thread twice in java?
How do you convert an int to a string in java?
How do you sort arrays in java?
take an array with -ve and +ve value both.find out the nearest value of 0(zero).if two values are same like(-2 and +2)then extract +2 is nearest of 0(zero).
What are singleton services?
What is thread life cycle in java?
how come we know the object is no more used in the class?
Can an interface extend a class?