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

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

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

面接準備

模擬試験

ホームページに設定

このページをブックマーク

メールアドレスを登録

Java Swing 面接の質問と回答

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

質問 16. Which method of the Component class is used to set the position and size of a component?

setBounds Method of the Component class is used to set the position and size of a component.

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

質問 17. What is the What is the difference between invokeAndWait() and invokeLater()?

invokeAndWait() method in swing is synchronous. It blocks until Runnable task is complete. InvokeLater() method in swing is asynchronous. It posts an action event to the event queue and returns immediately. It will not wait for the task to complete.

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

質問 18. Why should any swing call back implementation execute quickly?

Callbacks are invoked by the event dispatch thread. Event dispatch thread blocks processing of other events as long as call back method executes.

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

質問 19. What is an applet?

Applet is a java program that runs inside a web browser.

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

質問 20. What is the difference between applications and applets?

Application must be run explicitly within Java Virtual Machine whereas applet loads and runs itself automatically in a java-enabled browser. Application starts execution with its main method whereas applet starts execution with its init method. Application can run with or without graphical user interface whereas applet must run within a graphical user interface. In order to run an applet we need a java enabled web browser or an appletviewer.

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

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

著作権 © 2026、WithoutBook。