can we write a program with out a class in core java?
Answer Posted / yogesh
no...
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Why enumeration is faster than iterator?
Can I overload to string method
What are streams in java 8?
What is difference between == equals () and compareto () method?
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
How big is a boolean?
Explain the use of sublass in a java program?
What are internal variables?
How to print an arraylist in java?
Name component subclasses that support painting in java programming?
What is the purpose of using bufferedinputstream and bufferedoutputstream classes?
Why java is used everywhere?
What is the method to declare member of a class static?
How will you serialize a singleton class without violating singleton pattern?
Does java support multiple inheritance or not?