logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • public class Threads2 implements Runnable { public void run() { System.out.println("run."); throw new RuntimeException("Problem"); Which among the following is true? } public static void main(String[] args) { Thread t = new Thread(new Threads2()); t.start(); System.out.println("End of method."); } }


  • Options
  • A. java.lang.RuntimeException: Problem
  • B. run. java.lang.RuntimeException: Problem
  • C. End of method. java.lang.RuntimeException: Problem
  • D. End of method. run. java.lang.RuntimeException: Problem

  • Correct Answer
  • End of method. run. java.lang.RuntimeException: Problem 

    Explanation

    Only D can be true


  • Technology problems


    Search Results


    • 1. Which kind of inheritance is not supported directly through classes in java?

    • Options
    • A. Multilevel
    • B. Multiple
    • C. Single
    • D. Hirarcheal
    • Discuss
    • 2. Which among the following is a scope resolution operator?

    • Options
    • A. :
    • B. ::
    • C. :?
    • D. None
    • Discuss
    • 3. Why interface method is always public?
    • Discuss
    • 4. Which of the following method declarations are allowed inside interface?

    • Options
    • A. public void m1()
    • B. private void m1()
    • C. protected void m1()
    • D. abstract public void m1()
    • Discuss
    • 5. Inside an interface when should the variables be initialized?

    • Options
    • A. Globally
    • B. Whenever required
    • C. Inside a function
    • D. During the time of declaration
    • Discuss
    • 6. public abstract class Shape { private int x; private int y; public abstract void draw(); public void setAnchor(int x, int y) { this.x = x; this.y = y; } } Which two classes use the Shape class correctly?

    • Options
    • A. public class Circle implements Shape { private int radius;
    • B. public abstract class Circle extends Shape { private int radius; }
    • C. public class Circle extends Shape { private int radius; public void draw();
    • D. None
    • Discuss
    • 7. public abstract class Shape { private int x; private int y; public abstract void draw(); public void setAnchor(int x, int y) { this.x = x; this.y = y; } } Which two classes use the Shape class correctly?

    • Options
    • A. public class Circle implements Shape { private int radius;
    • B. public abstract class Circle extends Shape { private int radius; }
    • C. public class Circle extends Shape { private int radius; public void draw();
    • D. None
    • Discuss
    • 8. X implements Y, Z Arguments: 1. X should be class 2. Y, Z should be interfaces

    • Options
    • A. Only 1 is true
    • B. Only 2 is true
    • C. Both 1 and 2 are true
    • D. None
    • Discuss
    • 9. What is a class, member and local variable?
    • Discuss
    • 10. What is JDBC Driver ?
    • Discuss


    Comments

    There are no comments.

Enter a new Comment