Answer Posted / jesi
java does not really support multidimensional array.it does however supports array of array.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain about strings in java?
How would you format a date in java? I.e. In the ddmmyyy format?
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 all methods are used to prevent thread execution ?
How do you do descending order in java?
Is array size fixed in java?
What is the difference between actual and formal parameters?
How do you create a bulleted list?
Is java call by value?
What are the two ways of implementing multi-threading in java?
How to instantiate member inner class?
What do you know about java?
Difference between abstract and concrete class ?
What are static initalizers in java ?
What does isempty () do in java?