logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • What is the impact of declaring a method as final?


  • Correct Answer
  • A method declared as final can't be overridden A sub-class can't have the same method signature with a different implementation 


  • Technology problems


    Search Results


    • 1. What is the access scope of a protected method?
    • Discuss
    • 2. How to define a constant variable in Java?
    • Discuss
    • 3. Is Java a pure object oriented language?
    • Discuss
    • 4. What is difference between Path and Classpath?
    • Discuss
    • 5. What is the maximum number of Triggers can be applied in a table ?

    • Options
    • A. 8
    • B. 9
    • C. 12
    • D. 14
    • Discuss
    • 6. Which of the following is not used for commenting in java?

    • Options
    • A. //
    • B. /* */
    • C. /** */
    • D. /** **/
    • Discuss
    • 7. Which is true?

    • Options
    • A. "X extends Y" is correct if and only if X is a class and Y is an interface
    • B. "X extends Y" is correct if and only if X is a class and Y is an interface
    • C. "X extends Y" is correct if X and Y are either both classes or both interfaces
    • D. "X extends Y" is correct for all combinations of X and Y being classes and/or interfaces
    • Discuss
    • 8. class Hell { public static void main(String[] args) { Integer i = 42; String s = (i<40)?"life":(i>50)?"base":"ball"; System.out.println(s); } }

    • Options
    • A. null
    • B. ball
    • C. base
    • D. None
    • Discuss
    • 9. try { int x = Integer.parseInt("two"); } Which could be used to create an appropriate catch block?

    • Options
    • A. ClassCastException
    • B. IllegalStateException
    • C. NumberFormatException
    • D. None
    • Discuss
    • 10. Difference between Java Beans & Servlets?
    • Discuss


    Comments

    There are no comments.

Enter a new Comment