ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage   interview questions urls   External Links  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories  >>  Software  >>  Programming Languages  >>  C++  >>  OOPS
 
 


 

 
 STL interview questions  STL Interview Questions
 OOPS interview questions  OOPS Interview Questions
 C++ General interview questions  C++ General Interview Questions
Question
is java purely oop Language?
 Question Submitted By :: Niyajmohd
I also faced this Question!!     Rank Answer Posted By  
 
  Re: is java purely oop Language?
Answer
# 1
yes it is , any programming that uses objects & classes is
Object oriented programming , we can't write a program
without  a class or atleast an object
 ex:if u write 
           int x;
u may ask int is a datatype , where is object, but in java
it is declared that any datatype is an object of " Object"
class.
 
Is This Answer Correct ?    5 Yes 4 No
Niyajmohd
[Ghar & Institute]
 
  Re: is java purely oop Language?
Answer
# 2
Ya, ofcourse.
 
Is This Answer Correct ?    1 Yes 4 No
Saravanan
 
 
 
  Re: is java purely oop Language?
Answer
# 3
though it is a object oriented language, it doesn't support 
few of oops like multiple inheritance.....
 
Is This Answer Correct ?    1 Yes 2 No
Santhi
 
  Re: is java purely oop Language?
Answer
# 4
java is not a pure object oriented .its partially object
oriented.object oriented means every thing should be used in
terms of objects.in java we use datatypes with out creating
any objects.using java we can do fully object oriented
programming.so its a partially object oriented.
 
Is This Answer Correct ?    7 Yes 0 No
Swapna
 
  Re: is java purely oop Language?
Answer
# 5
Perfect answer by  Swapna. Java is not pure object oriented.
 Data types are still not objects except String. I think the
only pure object oriented language still is smalltalk,
though i havent explored much with c#.
 
Is This Answer Correct ?    3 Yes 0 No
Sujith
 
  Re: is java purely oop Language?
Answer
# 6
yes,because  java consists of classes and interfaces within 
a package.Also we can acess those methods only by objects. 
sothat java is purely oop language.
 
Is This Answer Correct ?    1 Yes 0 No
Inbaraj
 
  Re: is java purely oop Language?
Answer
# 7
no , 
 java is not a purely object oriented language because it
doesnot support the feature multiple inhetiance .
 it support the  feature interface instead of multiple
inheritance
 
Is This Answer Correct ?    4 Yes 1 No
Ravi
 
  Re: is java purely oop Language?
Answer
# 8
yes, eventhough java is object oriented it doesn't support 
the multiple inheritance overcome this we use interface
 
Is This Answer Correct ?    2 Yes 0 No
Kalaivani
 
  Re: is java purely oop Language?
Answer
# 9
Java supports almost all the features of oops like 
class,objects,inheritance,polymorphism
 
Is This Answer Correct ?    2 Yes 0 No
Ashwini
 
  Re: is java purely oop Language?
Answer
# 10
yes,because  java consists of classes and interfaces within 
a package.so we can import the package and access the
members of that package
 
Is This Answer Correct ?    1 Yes 0 No
Anandan
 
  Re: is java purely oop Language?
Answer
# 11
yes,because  java consists of classes and interfaces within 
a package.Also we can acess those methods only by objects. 
sothat java is purely oop language.
 
Is This Answer Correct ?    2 Yes 0 No
Anandan
 
  Re: is java purely oop Language?
Answer
# 12
Yes. Java is full on full OOPs Based language.
One more point of view java program structure is
'C' language based & It's based on 'C++' properties.
'C++' properties means
        * Classes
        * Objects
        * Inheritance
        * Polymoriphsm
        * Encapusulation
        * Abstrsction and so on.
Suppose we con't use the any class, then Java is not oops 
based.
 
Is This Answer Correct ?    1 Yes 0 No
Madasamy.k
 
  Re: is java purely oop Language?
Answer
# 13
No, because 
1) data types not declaring by object except String, data 
types are declaring in Literal types
2) It not support Multilevel inheritance
3) It does n't support operator overloading
 

So, java is not purely OOP concept
 
Is This Answer Correct ?    3 Yes 0 No
Baalu Aanand
 
  Re: is java purely oop Language?
Answer
# 14
No,java is not pure object oriented language ,not 
everything done by an object.Pure oopl is small talk.
 
Is This Answer Correct ?    1 Yes 1 No
Girish
 
  Re: is java purely oop Language?
Answer
# 15
Java is not pure OOP Language because it uses primitive data
types.
 
Is This Answer Correct ?    0 Yes 1 No
Vijay Tandel
 
  Re: is java purely oop Language?
Answer
# 16
till java5.0 its not pure oop.java6.0 is pure oop bcoz it 
uses only primitive data type
 
Is This Answer Correct ?    0 Yes 0 No
Uma
 
  Re: is java purely oop Language?
Answer
# 17
YES.Because java programming contains classes and objects.
 
Is This Answer Correct ?    1 Yes 2 No
Rajeshkannan.g
 
  Re: is java purely oop Language?
Answer
# 18
YES.Because java programming contains classes and objects.
 
Is This Answer Correct ?    1 Yes 1 No
Rajeshkannan.g
 
  Re: is java purely oop Language?
Answer
# 19
YES.Because java programming contains classes and objects.
 
Is This Answer Correct ?    1 Yes 1 No
Rajeshkannan.g
 
  Re: is java purely oop Language?
Answer
# 20
Java is not pure OOPL because, programing language uses 
only 1. Class 2. Object, those we can called as pure OOP.
If any language uses other features(Abstraction, 
Encapsulation, Inheritance and Polymorphism) of OOP then 
that language is not Pure OOP.
         Another point is Pure OOP language can not use 
primitive data types whereas java uses. That is why java is 
not pure OOP language.
 
Is This Answer Correct ?    1 Yes 1 No
Sudipta Mandal
 
  Re: is java purely oop Language?
Answer
# 21
java is not purely oops based.because java cann`t suppport 
multiple and multi level inheritance.
                                     but java support     
some oops aaplications like 
encapsulation ,inheritance,abstraction.and polymorphism.
 
Is This Answer Correct ?    0 Yes 1 No
Simranjit Kaur
 
  Re: is java purely oop Language?
Answer
# 22
yes its a pure oops concepts...instead of multiple
inheritance  we r using interface concepts...so we can say
its a pure object oriented language..
 
Is This Answer Correct ?    1 Yes 1 No
Sridar
 

 
 
 
Other OOPS Interview Questions
 
  Question Asked @ Answers
 
In which Scenario you will go for Interface or Abstract Class?  1
What is Method overloading?  4
What is the difference between an object and a class?  2
Explain polymorphism? What r the types of polymorphism? pls give examples? HCL2
Difference between new operator and operator new  2
swapping program does not use third variable  4
What is an object? HCL7
What is Agile methodology? Inmar2
What is the differances between a abstract calss and interface Aviva2
What is a mixin class?  3
Describe what an Interface is and how it?s different from a Class. Spinsys4
What do you mean by binding of data and functions?  1
What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass  4
what is the need of abstraction? what is abstraction?what is the abstraction for stack? Verizon5
what is virtual function in c++  4
When is an object created and what is its lifetime? IBM1
What is friend function? Wipro3
What is command routing in MFC GE1
polymorphism means? BFL2
Name an advantage of array over linked list? IBM12
 
For more OOPS Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com