Solved

What Is Known for Certain from This Correct Code Excerpt

Question 72

Multiple Choice

What is known for certain from this correct code excerpt? ActionListener openListener = new FileOpenListener() ;
JMenuItem fileOpen = new JMenuItem("Open File") ;
FileOpen.addActionListener(openListener) ;


A) fileOpen will open a file dialog when clicked
B) The fileOpen menu item will be visible
C) The FileOpenListener class implements the ActionListener interface
D) The openListener object will only listen to the fileOpen object

Correct Answer:

verifed

Verified

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

Related Questions