Array stores in Heap space
Which of the following is a Non-Access modifier?
What will be the output of the following Java program?
Which environment variable is used to specify the path to Maven?
______ are growable in nature, they don't have a fixed size.
Which is the correct way to import an entire package 'pkg'?
What does JDBC stand for?
Which of these methods of the Character wrapper class can be used to obtain the char value contained in the Character object?
Select the CORRECT statement.
import java.util.*;
class output
{
public static void main(String args[])
{
Stack obj = new Stack();
obj.push("A");
obj.push("B");
obj.push("C");
obj.push("E");
System.out.println(obj.peek());
}
}