The types of popups in swing are 1. Lightweight Popup2. Heavyweight popup3. Medium weight popup

A) 1, 2
B) 2, 3
C) 1, 3
D) 1, 2, 3

Showing Answers 1 - 1 of 1 Answers

Swing attempts to maximize popup performance by dynamically choosing  the most efficient container to display a popup just prior to showing  the popup. The types of popups created are:

  • LightWeight Popup: a lightweight container.
  • MediumWeight Popup: an AWT heavyweight Panel.
  • HeavyWeight Popup: a JWindow (heavyweight top-level window).

so the answer is "D" .

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions