What is compile time polymorphism?

Answer Posted / tntrichy

u r right!

Is This Answer Correct ?    39 Yes 23 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are encapsulation, inheritance and polymorphism?

525


State the merge-sort principle and its time complexity.

569


What are the features of java?

529


What is nested top-level class?

576


What is nextint java?

543






Name some OOPS Concepts in Java?

637


How to retrieve data from database in java using arraylist?

522


Can a class extend more than one class?

607


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.

1586


Is string a wrapper class?

512


Explain tree set and its features?

597


How will you calculate the depth of a binary tree if the tree contains 15 nodes?

596


Is it necessary that each try block must be followed by a catch block?

553


What is difference between calling start() and run() method of thread?

555


How do you remove spaces in java?

532