Solved

To Add the JList Object AddressList to a Scroll Pane

Question 51

Multiple Choice

To add the JList object addressList to a scroll pane named scrollPane, use the following:


A) JScrollPane scrollPane = new JScrollPane(addressList) ;
B) scrollPane.add(addressList) ;
C) addressList.add(scrollPane) ;
D) addressList.addScrollPane(scrollPane) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions