1) Find the Merge point of two linked lists.
2) Swap two bits of integer.
3) Reverse individual words of the sentence.
4) Reverse string without using temp string.
Answer Posted / santosh kumar
refer to net
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Differentiate between a class and an object.
What is bytecode in java ?
Does java map allow duplicates?
What technique can be employed to compare two strings?
What’s the difference between applets and standalone program?
Why chararray() is preferred over string to store the password?
What is parameters example?
Is java an ide?
Why Java is not pure Object Oriented language?
What is the purpose of default constructor?
What are JVM.JRE, J2EE, JNI?
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
Can we create an object of static class in java?
What data type is a string?
Are generics important java?