My interview asked what is dynamic variable in java and
where we use them.
Answers were Sorted based on User's Feedback
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 |
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 |
how to connect two diffrent applet files
Write a program to print the pattern given below
What is numeric function?
How many types of flags are there?
How many JVMs can run on a single machine and what is the meaning of Just-In-Time (JIT) compiler?
How to instantiate static nested classes in java?
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); } }
What is a class reference?
How is Garbage collection done in Java?
What is a finally block?
Can there be an abstract class with no abstract methods in it?
Difference between a class and an object?