What is numeric promotion?



What is numeric promotion?..

Answer / guest

it's the process of converting smaller values to larger
values.

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More Core Java Interview Questions

Why string is not thread safe?

0 Answers  


What is an exception?

6 Answers  


What is mvc in java?

0 Answers  


Name container classes in java programming?

0 Answers  


Is java a virus?

0 Answers  






what are the methods in object?

0 Answers   IBS,


Explain different ways of creating a thread?

0 Answers  


What is AppletStub?

1 Answers  


How to change the priority of thread or how to set the priority of thread?

0 Answers  


Can keyword be used as identifier?

0 Answers  


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<RegistryKey> 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". } } }

0 Answers   Google,


What is hasnext in java?

0 Answers  


Categories