is java purely oop Language?

Answer Posted / rajashekar reddy

Yes, java is purely Object Oriented Language,
someone says that Java is partially OOL because datatypes are
declared without creating object But my question is without creating object how can we access these data types.
We can declare any data type within the method or within the class only and obviously every method is written inside the
class only.
Every class is an Blueprint of that particular object.
My conclusion is Java is purely Object Oriented Language.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we need oop?

861


What is the benefit of oop?

749


Why is it so that we can have virtual constructors but we cannot have virtual destructors?

4306


What is inheritance write a program to show use of inheritance?

854


What is difference between inheritance and polymorphism?

761


Why do pointers exist?

862


What is polymorphism in oop example?

715


What do you mean by abstraction?

802


What makes a language oop?

812


What is object in oop?

866


How many human genes are polymorphic?

768


What is destructor example?

768


Why is abstraction used?

826


What are properties in oop?

796


Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.

937