Un-Answered Questions { Core Java }

what is ststic with example

1575


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 subkeys = key.subkeys(); subkeys.hasNext();) { RegistryKey subkey = subkeys.next(); System.out.println(subkey.getName()); // You need to check here if there's anything which matches "Mozilla FireFox". } } }

1326


Hi i am creating desktop application in that i want calling to mobile number. i have java telephone api (JTAPI) but i dont understand how it configure & use plese help me

1335


Why are the destructors for base class and derived class called in reverse order when the program exits

1672


difference between byte stream class and character stream class?

4055


what is mena by object block any what is the use of that

1745


explain the concept of virtual method invocation in polymorphism in detail?

1690


Addition to previous section relative word 5th one was Putrid ans: rotten, also there was prob. in 1st section on bucket weight ans:10kg, also there was a prob. on train speed to find bridge length ans:800 mtrs.

1586


In a container there are 5 components. I want to display all the component names, how will you do that?

1532


What is the exact difference in between Unicast and Multicast object?

1483


Where will it be used?

1484


What is the main functionality of the remote reference layer?

1388


How do you download stubs from Remote place?

1326


I want to store more than 10 objects in a remote server? Which methodology will follow?

2612


make a method which any number and any type of argument and print sum of that arguments.....

1358