Multiple choice

Which of the following methods is/are present in the JMenu class in Java?

  1. addComponent(Component c, int index)

  2. add(Component c, int index)

  3. add(int index, Component c)

  4. addComponent(int index, Component c)

  5. addcomponent(Component c)

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

This is the correct answer. Method add(Component c, int index) is present in the JMenu class.