What is multiple inheritance & can we implement it in java?
Answer Posted / siva
Multiple inheritance means it have more than one base class
and one derived..
but multiple inheritance does not support multiple
inheritance......
We r implementing multiple inheritance with the help of
interface...
and we not able to create object for interface class
directly but we can create indirectly
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a copy constructor in java?
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 string pool?
Explain the private protected method modifier?
Can we declare array without size in java?
Is an object null?
Write a code to show a static variable?
Is array dynamic in java?
Is java a software?
Is java based on c?
What do you understand by casting in java language?
What is nan inf?
Write a method that will remove given character from the string?
Describe the term diamond problem.
What is integers and example?