whether java is fully object oriented language or partially
object oriented language
Answer Posted / rahul rastogi
Yes, Java is pure object oriented Language because in Java we can't use anything without Object.It means without object [directly or indirectly] we can't do anything.
| Is This Answer Correct ? | 5 Yes | 10 No |
Post New Answer View All Answers
What does business logic mean?
What is your platform’s default character encoding?
What classes of exceptions may be thrown by a throw statement?
how to know the total memory occupied by the objects in the ArrayList(Array list may contain duplicate objects)
Is there any way to find whether software installed in the
system is registered by just providing the .exe file?
I have tried the following code but its just displaying the
directory structure in the registry.
Here the code :
package com.msi.intaller;
import java.util.Iterator;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RootKey;
public class RegistryFinder {
public static void main(String... args) throws Exception
{
RegistryKey.initialize(RegistryFinder.class.getResource("jRe
gistryKey.dll").getFile());
RegistryKey key = new RegistryKey(RootKey.HKLM,
"Software\\ODBC");
for (Iterator
What is default constructors?
Differentiate between stringbuffer and stringbuilder in java.
What are the new features in java 8? Explain
Explain the access modifiers for a class, method and variables?
Can constructor be inherited?
Can an integer be null java?
What is character in data type?
How many ways can an argument be passed to a subroutine and explain them?
Write a program to solve producer consumer problem in java?
What are basic keywords?