Why Java is not purely object oriented?
Answer Posted / priya
java is not purely object oriented b'coz
although we can't write a java program without a CLASS,it
can be without an OBJECT.
i.e. you can simply write the code in "public static void
main(String[] args)". and still it works. Similarly, C++ is
not b'coz u can write CPP program in "main()".
Is This Answer Correct ? | 10 Yes | 14 No |
Post New Answer View All Answers
Write a program to check string is palindrome without using loop?
How to create packages in java?
How many boolean functions are there?
What are the methods available in a class?
What is a Presistent Object?
What is method reference in java?
Why vector class is used?
Explain OOPs concept.
What will happen if static modifier is removed from the signature of the main method?
What is widening and narrowing in java? Discuss with an example.
how would you implement a thread pool? : Java thread
Why call by value prevents parameter value change?
What is an exception in java?
Explain what is Marker interface?
What do you mean by local class?