Самые популярные вопросы и ответы для интервью и онлайн-тесты
Образовательная платформа для подготовки к интервью, онлайн-тестов, учебных материалов и живой практики

Развивайте навыки с целевыми маршрутами обучения, пробными тестами и контентом для подготовки к интервью.

WithoutBook объединяет вопросы для интервью по предметам, онлайн-практику, учебные материалы и сравнительные руководства в одном удобном учебном пространстве.

Подготовка к интервью

Core Java вопросы и ответы для интервью

Test your skills through the online practice test: Core Java Quiz Online Practice Test

Вопрос 121. What is the difference between instanceof and isInstance?

instanceof is used to check to see if an object can be cast into a specified type without throwing a cast class exception. isInstance() Determines if the specified Object is assignment-compatible with the object represented by this Class. This method is the dynamic equivalent of the Java language instanceof operator. The method returns true if the specified Object argument is non-null and can be cast to the reference type represented by this Class object without raising a ClassCastException. It returns false otherwise.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 122. 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.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 123. Which class is extended by all other classes?

The Object class is extended by all other classes.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 124. Does a class inherit the constructors of its superclass?

A class does not inherit constructors from any of its superclasses.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 125. How would you make a copy of an entire Java object with its state?

Have this class implement Cloneable interface and call its method clone().

Это полезно? Добавить комментарий Посмотреть комментарии
 

Самое полезное по оценкам пользователей:

Авторские права © 2026, WithoutBook.