• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Is Exam Cram correct or RHE correct?

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Which of the following AWT components can have a menu, either as a menu bar or pop-up menu, attached to it? (Exam Cram page.no 229, q.no 2)
a. java.awt.Frame
b. java.awt.Window
c. java.awt.Applet
d. java.awt.Panel
Answer shown as a,b,c and d.
But in RHE (page no. 341, q.no 8)
Which of the following may contain a menu bar?
a. A panel
b. A frame
c. An applet
d. A menu bar
e. A menu
Answer shown as only a Frame may contain menu bar.
So, which one is correct?
regards
yojana
 
Ranch Hand
Posts: 56
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello yojana,
The key difference between the two questions is "which can contain a menu, either as a menubar or popup menu" and "which can contain a menubar."
add( PopupMenu ) is defined in Component so Applet, Panel, Window and Frame (which have Component as a superclass) can all have PopupMenus.
setMenuBar( MenuBar ) is defined in Frame hence only Frame (and subclasses) can have a MenuBar.
Hence they're both right because they aren't asking the same thing.
Best regards,
Steve Butcher
exceptionraised@aol.com
 
Bras cause cancer. And tiny ads:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic