Is java is a fully object object oriented language?
Answer Posted / adarsha
JAVA IS "THE" PERFECT OBJECT ORIENTED PROGRAMMING LANGUAGE.
whatever may be the oops concepts which are not supported by
JAVA like multiple inheritance and operator overloading etc
they hav been removed from java just to reduce the complexity.
Main reason i m telling java is OOL because everything in
java can represented in the form of "object" and thats wat
the main objective of object oriented programming language.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How concurrent hashmap works?
Can we sort list in java?
How many bytes is a string in java?
What is java abstraction with example?
How do you use compareto in java?
How the interruptible method gets implemented?
Is math an abstract class in java?
What types of index data structures can you have in java?
Write a code to create a trigger to call a stored procedure
What is entry set in java?
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 features of java programming language.
How do you use find and replace?
How does a cookie work in Servlets?
What are the benefits of immutable objects?