Home Interview Questions and Answers Core Java Interview Questions and Answers For Freshers and Experience Part-12

core-java67. 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

68. What restrictions are placed on method overloading?

Two methods may not have the same name and argument list but different return types.

69. Which class is extended by all other classes?

The Object class is extended by all other classes.

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.

71. What is the return type of a program’s main() method?

void.

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

You may also like

Leave a Comment