4.
[Java]
What is not the use of “this” keyword in Java?
7.
[Java]
What is the output of the following program?
public class Test implements Runnable
{
public void run()
{
System.out.printf("%d",3);
}
public static void main(String[] args) throws InterruptedException
{
Thread thread = new Thread(new Test());
thread.start();
System.out.printf("%d",1);
thread.join();
System.out.printf("%d",2);
}
}Deselect Answer
8.
[Java]
Which statement is true about Java?
10.
[Java]
What is runtime polymorphism?