My interview asked what is dynamic variable in java and
where we use them.

Answers were Sorted based on User's Feedback



My interview asked what is dynamic variable in java and where we use them...

Answer / lakshmikanth

Dynamic variable is a variable created/assigned by the
compiler during the run/compilation time.

Is This Answer Correct ?    9 Yes 2 No

My interview asked what is dynamic variable in java and where we use them...

Answer / nishant kumar

Dynamic variable is a variable than is declear before the compile and assigned the value at the run time.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Core Java Interview Questions

how to connect two diffrent applet files

0 Answers  


Write a program to print the pattern given below

0 Answers  


What is numeric function?

0 Answers  


How many types of flags are there?

0 Answers  


How many JVMs can run on a single machine and what is the meaning of Just-In-Time (JIT) compiler?

0 Answers   TCS,


How to instantiate static nested classes in java?

0 Answers  


What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }

1 Answers  


What is a class reference?

0 Answers  


How is Garbage collection done in Java?

3 Answers   T3 Softwares,


What is a finally block?

0 Answers  


Can there be an abstract class with no abstract methods in it?

1 Answers  


Difference between a class and an object?

0 Answers  


Categories