人気の面接質問と回答・オンラインテスト
面接対策、オンラインテスト、チュートリアル、ライブ練習のための学習プラットフォーム

集中型学習パス、模擬テスト、面接向けコンテンツでスキルを伸ばしましょう。

WithoutBook は、分野別の面接質問、オンライン練習テスト、チュートリアル、比較ガイドをひとつのレスポンシブな学習空間にまとめています。

面接準備

Core Java 面接の質問と回答

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

質問 211. How are Observer and Observable used?

Objects that subclass the Observable class maintain a list of observers. When an Observable object is updated it invokes the update() method of each of its observers to notify the observers that it has changed state. The Observer interface is implemented by objects that observe Observable objects.

役に立ちましたか? コメントを追加 コメントを見る
 

質問 212. How does Java handle integer overflows and underflows?

It uses those low order bytes of the result that can fit into the size of the type allowed by the operation.

役に立ちましたか? コメントを追加 コメントを見る
 

質問 213. To what value is a variable of the String type automatically initialized?

The default value of an String type is null.

役に立ちましたか? コメントを追加 コメントを見る
 

質問 214. What is the range of the short type?

The range of the short type is -(2^15) to 2^15 - 1.

役に立ちましたか? コメントを追加 コメントを見る
 

質問 215. What is Downcasting ?

Downcasting is the casting from a general to a more specific type, i.e. casting down the hierarchy

役に立ちましたか? コメントを追加 コメントを見る
 

ユーザー評価で最も役立つ内容:

著作権 © 2026、WithoutBook。