Answer Posted / kruthi
Java is not pure OOPs because of Primitive data type and of
static keyword.
Is This Answer Correct ? | 22 Yes | 5 No |
Post New Answer View All Answers
how to write a server program and sending the mails to the server using smtp protocol please help me
what is the difference between a threads start() and run() methods? : Java thread
Explain about automatic type conversion in java?
What is a protected method?
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.
Explain notifyall() method of object class ?
What is matcher in java?
Describe different states of a thread.
Explain an intermediate language?
What does it mean that strings are immutable?
explain what is transient variable in java?
Can a static class have a constructor?
What is difference between an object and a class?
What is encapsulation in java?
What is abstract class constructor called?