Can an interface be final?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is difference between iterator and enumeration in java?

0 Answers  


Marker interface means , interface which has no methods.Then what is the necessity of its usage.I read "it tells the compiler that it should be treated differently ". "It is used to store state of an object". But still am not clear.Please explain clearly.

2 Answers  


Can a set contain duplicates?

0 Answers  


What is the difference between choice and list?

0 Answers  


How many ways can we create singleton class?

0 Answers  






What is externalizable?

0 Answers  


What is meant by method overriding?

0 Answers  


What is an immutable object?

0 Answers  


How to declare objects of a class ?

0 Answers   Akamai Technologies,


what are the high-level thread states? : Java thread

0 Answers  


How we can make copy of a java object?

0 Answers  


Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.

0 Answers  


Categories