is java purely oop Language?

Answers were Sorted based on User's Feedback



is java purely oop Language? ..

Answer / devesh

no java is not pure oop language because in java we use premitive data types like char ,short,double,flour etc which are not object,so we can say java is not a object oriented programming.

Is This Answer Correct ?    2 Yes 1 No

is java purely oop Language? ..

Answer / manikandan [ gtec,vellore ]

yes,java is purely oop language.int char etc are simple data
types this are not used for application.we use only wrapper
classes in the application.i asked HR and he replied this
answer.the thing is java supports simple data types too.

Is This Answer Correct ?    1 Yes 0 No

is java purely oop Language? ..

Answer / prem kumar sp

Hi.. All
According to Me Java is an Pure Object Oriented Programming
Language.. because

1.It supports all the features of object oriented programming
2. we can write an java application with out using primitive
data types, we can use wrapper classes instead on primitive
data types
{ex instead of int we can use Integer, instead of double we
can use Double}
3. Java Supports multiple inheritance through interfaces

so we can write a full fledged object oriented programs
using java...

Hence it is pure object oriented programming language

Is This Answer Correct ?    1 Yes 0 No

is java purely oop Language? ..

Answer / manik

yes.
To be truly considered "object oriented", a programming language should support at a minimum four characteristics:
Encapsulation--implements information hiding and modularity (abstraction)
Polymorphism--the same message sent to different objects results in behavior that's dependent on the nature of the object receiving the message
Inheritance--you define new classes and behavior based on existing classes to obtain code re-use and code organization
Dynamic binding--objects could come from anywhere, possibly across the network. You need to be able to send messages to objects without having to know their specific type at the time you write your code. Dynamic binding provides maximum flexibility while a program is executing
Java meets these requirements nicely, and adds considerable run-time support to make your software development job easier.

Is This Answer Correct ?    1 Yes 0 No

is java purely oop Language? ..

Answer / teja

yes
java is purely oop language
becoz it satisfies all d concepts of oop's

Is This Answer Correct ?    0 Yes 0 No

is java purely oop Language? ..

Answer / mital trivedi

Java is a OOP language and it is not a pure Object Based
Programming Language
There are seven qualities to be satisfied for a programming
language to be pure Object Oriented. They are:
1.Encapsulation/Data Hiding
2.Inheritance
3.Polymorphism
4.Abstraction
5.All predifined types are objects
6.All operations are performed by sending messages to
objects
7.All user defined types are objects.
JAVA is not because it supports Primitive datatype such as
int, byte, long... etc, to be used, which are not objects.

Is This Answer Correct ?    0 Yes 0 No

is java purely oop Language? ..

Answer / ramu

yes . java is pure obeject programming language because it
supports multiple inheritance through the interfaces and its
objct of objct premitive data types.so don't say java is not
pure oops lang.

Is This Answer Correct ?    0 Yes 0 No

is java purely oop Language? ..

Answer / sweety

Yes,Because everything is inside the class & accesses
methods and variables by only using objects.
as well as the main function is always resides within the
class i.e.similar name given to your file.

Is This Answer Correct ?    0 Yes 0 No

is java purely oop Language? ..

Answer / nagaraju

Java is partially object oriented programing language.

Is This Answer Correct ?    0 Yes 0 No

is java purely oop Language? ..

Answer / vikash singh-143

No,java is not pure OOPL just because of primitive data
types.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

Why static functions always uses static variables?

3 Answers  


When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??

13 Answers   HCL, Honeywell,


What does it mean when someone says I oop?

0 Answers  


Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.

0 Answers  


what is overloading and overriding?

7 Answers  






What is the types of inheritance?

0 Answers  


Which type does string inherit from?

0 Answers  


sir plz send me a set of questions that been frequently held in written examination during campus selection.

0 Answers   TCS,


what is an qt4 interface?

1 Answers   IBM,


difference between abstraction and encapsulation with progarammatic eg. hi,just recently i went for an interview .The interviewer asked what is the difference between abstraction and encapsulation with programmatic eg. I gave the answer as encapsulation mean hiding the relevant data which is not useful for the user, eg a electric fan .hiding the information how the electricity is converted into machanical energy. abtraction showing only the relevant data to the user eg electric fan. it look ,its color ,it design etc only relevant data. Then the interviewer asked me, give me some programmic eg .I Said Let assume a web form having control like textbox,button etc. The user can view textbox,button etc this is the eg of abstraction and when the user click on the button how he is redirected is not known by the user is the eg of the encapsulation. Am I Correct .was the answer given by me is perfect .now i am planing to go for an another interview should i give the same answer.IF not please suggest me a better answer.with some good eg Please help

1 Answers  


Can you name some types of inheritance?

0 Answers   Motorola,


What is the expansion of OOPS?

24 Answers   TCS,


Categories