What are internal and external variables?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

How many threads can java run?

0 Answers  


Explain the scope of a variable.

0 Answers   TCS,


What is the use of toarray () in java?

0 Answers  


public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }

0 Answers  


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;

17 Answers   Honeywell,


What are the operands of instanceof operator?

3 Answers  


What are the differences between throw and throws?

0 Answers  


What is difference between printf and scanf?

0 Answers  


What loop means?

0 Answers  


what is synchronization and why is it important? : Java thread

0 Answers  


Difference between final and effectively final ?

0 Answers  


What do you understand by copy constructor in java?

0 Answers  


Categories