Core Java Questions and Answer for Interview

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

62. Can a Byte object be cast to a double value?
No, an object cannot be cast to a primitive value.

63. 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.

64. 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.

65. 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.

66. 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.

67. Which class is extended by all other classes?
The Object class is extended by all other classes.

68. Which non-Unicode letter characters may be used as the first character of an identifier?
The non-Unicode letter characters $ and _ may appear as the first character of an identifier

69. What restrictions are placed on method overloading?
Two methods may not have the same name and argument list but different return types

70. What is casting?
There are two types of casting, casting between primitive numeric types and casting between object references. Casting between numeric types is used to convert larger values, such as double values, to smaller values, such as byte values. Casting between object references is used to refer to an object by a compatible class, interface, or array type reference.

User Answer

  1. Be the first one to express your answer.

Core Java Questions and Answer for Interview