java is puerly object oriented or not ?
Answers were Sorted based on User's Feedback
Answer / billuyadav208
No, Java Is Not Puerly Object Oriented Because it use
primitive data types and hence is not a pure object oriented
language.
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / narsimharaju
-->If we compared with previous programming languages then it is purely object oriented..
-->java it self it not a purely object oriented because the java using primitive data types..
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / jitendra kumar
no ,java is not pure object orinted language,because in
java,data type is not object orinted
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / sathiya
java is not purely object oriented, since it has primitive
data types.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vivek
Java is not purely object oriented, because it is doesn't supports multiple inheritance.
| Is This Answer Correct ? | 0 Yes | 1 No |
Which language is java?
What are the two ways in which thread can be created?
what is synchronization? : Java thread
Are arrays primitive data types?
What is a constructor overloading in java?
What is the Layout for ToolBar?
Which containers may have a MenuBar?
Can It is possible to synchronize the constructor of a Java Class?
What is off heap memory?
How do you detect memory leaks?
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.
List the three steps for creating an object for a class?