Is Java is 100% pure OOPS? Explain?

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


Please Help Members By Posting Answers For Below Questions

how to write a server program and sending the mails to the server using smtp protocol please help me

1752


what is the difference between a threads start() and run() methods? : Java thread

747


Explain about automatic type conversion in java?

806


What is a protected method?

814


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.

1799


Explain notifyall() method of object class ?

851


What is matcher in java?

706


Describe different states of a thread.

755


Explain an intermediate language?

689


What does it mean that strings are immutable?

831


explain what is transient variable in java?

849


Can a static class have a constructor?

723


What is difference between an object and a class?

793


What is encapsulation in java?

828


What is abstract class constructor called?

781