Home Interview Questions and Answers Advanced Java Interview Questions and Answers For Freshers and Experience Part-5

advanced java55. How many times may an object’s finalize() method be invoked by the garbage collector?

An object’s finalize() method may only be invoked once by the garbage collector.

56. What is the purpose of the finally clause of a try-catch-finally statement?

The finally clause is used to provide the capability to execute code no matter whether or not an exception is thrown or caught.

57. What is the argument type of a program’s main() method?

A program’s main() method takes an argument of the String[] type.

58. Which Java operator is right associative?

The = operator is right associative.

59. Can a double value be cast to a byte?

Yes, a double value can be cast to a byte.

60. What must a class do to implement an interface?

It must provide all of the methods in the interface and identify the interface in its implements clause.

You may also like

Leave a Comment