int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b;
System.out.println("The value is"+a+b+c;
Answer Posted / suresh
expected semicolan(;)&
expected ")"(close breas)
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is the significance of continue jump statement? Explain with an example.
What is java in layman terms?
What is scope of a variable?
Which is dependent variable?
How is hashset defined in java?
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
Which data type is class in java?
Can arraylist contain null values?
What is the importance of static variable?
What is meant by collection in java?
How do you convert bytes to character in java?
What is difference between static and abstract class?
Explain listiterator and methods in listiterator?
What is super in java?
Are the imports checked for validity at compile time? Will the code containing an import such as java.lang.abcd compile?