Advanced Java Questions and Answer for Interview

71. What value does read() return when it has reached the end of a file?
The read() method returns -1 when it has reached the end of a file.

72. Can a Byte object be cast to a double value?
No. An object cannot be cast to a primitive value.

73. What is the difference between a static and a non-static inner class?
A non-static inner class may have object instances that are associated with instances of the class's outer class.
A static inner class does not have any object instances.

74. What is the difference between the String and StringBuffer classes?
String objects are constants. StringBuffer objects are not constants.

75. If a variable is declared as private, where may the variable be accessed?
A private variable may only be accessed within the class in which it is declared.

76. What is an object's lock and which object's have locks?
An object's lock is a mechanism that is used by multiple threads to obtain synchronized access to the object. A thread may execute a synchronized method of an object only after it has acquired the object's lock.
All objects and classes have locks. A class's lock is acquired on the class's Class object.

77. What is the Dictionary class?
The Dictionary class provides the capability to store key-value pairs.

78. How are the elements of a BorderLayout organized?
The elements of a BorderLayout are organized at the borders (North, South, East, and West) and the center of a container.

79. What is the % operator?
It is referred to as the modulo or remainder operator. It returns the remainder of dividing the first operand by the second operand.

80. When can an object reference be cast to an interface reference?
An object reference be cast to an interface reference when the object implements the referenced interface.

User Answer

  1. Be the first one to express your answer.

Advanced Java Questions and Answer for Interview