Welcome to your Java Fundamentals

1. 
Java
In which process, a local variable has the same name as one of the instance variables?

2. 
Java
What is used to find and fix bugs in the Java programs.

3. 
Java
Which of the following is false about String?

4. 
Java
What of the following is the default value of an instance variable?

5. 
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);
           }
}

6. 
Java
What is Encapsulation?

7. 
Java
What is runtime polymorphism?

8. 
Java
Which of the following is not a Java features?

9. 
Java
Which statement is true about Java?

10. 
Java
What is not the use of “this” keyword in Java?