Is java is a fully object object oriented language?
Answer Posted / sanatan (orissa)
Please have a look, it may help you ........
There are some classes whose object can't be created.
Like 1) java.lang.Math
& 2) java.lang.System.
Because all the members are by default static.
So there is no need to create object of that classes.
Even there also no need of default constructor .
For which compiler doesn't create default constructor.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Explain the pointers in Java?
What is complexity and its types?
Which keyword specify that a variable is effectively final ?
Can we have static methods in an interface?
Can you have two constructors in java?
What is int lol?
What is a void in java?
What do you understand by java virtual machine?
Can a static class have a constructor?
Are arrays primitive data types?
Can we create an object if a class doesn't have any constructor ( not even the default provided by constructor ) ?
What is passed by reference and pass by value ?
Can an interface extend a class?
Which method you will use to create a new file to store some log data. Each time a new log entry is necessary, write string to the file in java ?
What is the impact of declaring a method as final?