Why Java is not purely object oriented?
Answer Posted / samba
Ans) Java is not pure object orinted language. why because
we can write java program class and objects and also can
write java program class and primitive type variable as
like int float double and byte.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does string mean in java?
Why declare Main() method as a static in java ?
How would you dynamically allocate memory to an array?
How does indexof work?
What is the structure of java?
Explain about exception propagation?
When wait(), notify(), notifyall() methods are called does it releases the lock or holds the acquired lock?
What is javac_g?
What is your platform?s default character encoding and how to know this?
Can we force garbage collector to run ?
What is a finally block? Is there a case when finally will not execute?
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 the main purpose of java?
Is this valid in java ? Can we instantiate interface in java?
What is a list in java?