What is the return type of a lambda expression?
Which of the following methods returns a proxy object?
Which operator is used to allocate memory to an array variable in Java?
Recursion is a process of defining a method that calls other methods repeatedly
check
Which of these methods is used to obtain the value of the invoking object as a long?
The main disadvantage of which exception handling is terminating program abruptly?
What is the difference between the statements int x = 25;
and Integer y = new Integer(33);
?
What will be the output of the following Java program?
import java.net.*;
public class Networking {
public static void main(String[] args) throws MalformedURLException {
URL obj = new URL("https://www.abekus.co/javamcq");
System.out.print(obj.toExternalForm());
}
}
Statement 1- Array is a class which uses String as a key to store the value in the object
Statement 2- ArrayList is a class which uses String as a key to store the value in the object
Statement 3- properties is a class which uses String as a key to store the value in the object