What are actual parameters?


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

Post New Answer

More Core Java Interview Questions

What is a for loop in java?

0 Answers  


what is diffrence between .NET and java?

2 Answers  


What are the important methods of java exception class?

0 Answers  


What classes of exceptions may be thrown by a throw statement?

0 Answers  


What is printwriter in java?

0 Answers  






When will you define a method as static?

0 Answers  


How to make object serializable in java?

0 Answers  


Is space a char?

0 Answers  


Can I declare class as static or private?

0 Answers  


Under what conditions is an object’s finalize() method invoked by the garbage collector?

0 Answers  


Explain the difference between association, aggregation and inheritance relationships.

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