Could you answer themSolution26 The JVM stores the array in
Could you answer them!!
Solution
26. The JVM stores the array in an area of memory, called __heap__, which is used for dynamic memory allocation where blocks of memory are allocated and freed in an arbitrary order. So, C is the answer.
27. D. t is non-static and it cannot be referenced in a static context in the main method.
28. To prevent a class from being instantiated: B. use the private modifier on the constructor.
29. Which of the following statements are correct:
A. The nextDouble() method in the Random class returns the next random double value.
B. If two Random objects have the same seed, the sequence of the random number obtained from these two objects are identical.
C. The nextInt() method in the Random class returns the next random int value.
30. What are the reasons to create an instance of the File class?
