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  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories  >>  Software  >>  Core Java  >>  Java J2EE  >>  Java Related
 
 


 

 
 Core Java interview questions  Core Java Interview Questions
 Advanced Java interview questions  Advanced Java Interview Questions
 Swing interview questions  Swing Interview Questions
 EJB interview questions  EJB Interview Questions
 Servlets interview questions  Servlets Interview Questions
 Struts interview questions  Struts Interview Questions
 JDBC interview questions  JDBC Interview Questions
 JMS interview questions  JMS Interview Questions
 SunOne interview questions  SunOne Interview Questions
 J2EE interview questions  J2EE Interview Questions
 Weblogic interview questions  Weblogic Interview Questions
 Websphere interview questions  Websphere Interview Questions
 Java Networking interview questions  Java Networking Interview Questions
 Java J2EE AllOther interview questions  Java J2EE AllOther Interview Questions
Question
Is Java is 100% pure OOPS? Explain?
 Question Submitted By :: Guest
I also faced this Question!!     Rank Answer Posted By  
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 1
no
 
Is This Answer Correct ?    18 Yes 4 No
Guest
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 2
YES , java is a pure OOPS(Object Oriented Programming)as in 
JAVA all the app can be perform under classes only which 
supports 
encapsulation,polymorphism,inheritance,interfaces,abstractio
n etc.
 
Is This Answer Correct ?    8 Yes 19 No
J2ee Student
 
 
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 3
No java isnt 100% pure OOPS coz if it were then everything 
should be classes and objects, whereas java still has 
primitive data type which violates the above said 
statement...SmallTalk is the only 100% pure OOPS language
 
Is This Answer Correct ?    17 Yes 2 No
Anand
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 4
No, Java is not 100% pure OOPS. As it does not support the E-
Com server.
 
Is This Answer Correct ?    3 Yes 2 No
Sreevani
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 5
Java is not 100% pure OOP,but 99.34%,because primitive data 
types are not treated as object
 
Is This Answer Correct ?    4 Yes 2 No
Priyanjan
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 6
java is not 100% oops because of only reason it has static 
keyword, according to oops and in real world we need an 
object to perform a function but in java using class name 
without an object we can perform function or call a method 
this violates oops and real world reflection..
 
Is This Answer Correct ?    4 Yes 2 No
Muthusenthil
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 7
Java is not pure OOPs because of Primitive data type and of 
static keyword.
 
Is This Answer Correct ?    4 Yes 2 No
Kruthi
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 8
Yes, Java Is not pure object Oriented  Lang.....Bcse of 
primtive data type...java is 99.7% pure.

for details cntct..vikas.nice@gmail.com
 
Is This Answer Correct ?    1 Yes 2 No
Vikas Dwivedi
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 9
Java is not 100% oops because it has no concepts like  
pointers.
 
Is This Answer Correct ?    1 Yes 12 No
Rahul
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 10
No. Java is not 100 % Pune OOP because of following three 
reasons:
1) It doesnot support Multiple inheritance.
2) It allows use of primitive data types which are not an 
objects.
3) It allows static methods to call without creating the 
instance. This disobeys OOPs concepts.
 
Is This Answer Correct ?    10 Yes 3 No
Prashant Khot
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 11
Because directly it doenn't support multiple inheritence 
and doesn't support pointers
 
Is This Answer Correct ?    2 Yes 2 No
Ravikiran
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 12
java is not pure oop based b'coz it does not support 
multiple inheritance & pointers which is supported by oop.
 
Is This Answer Correct ?    1 Yes 4 No
Swati(student)
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 13
java is not 100% oops because of only reason it has static 
keyword, 
   according to oops and in real world we need an 
object to perform a function but in java using class name 
without an object we can perform function or call a method 
this violates oops and real world reflection..
 
Is This Answer Correct ?    1 Yes 3 No
Kanchan Bangar
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 14
NO Java is not purely Oops bcaz of

1) AWT makes java code dependent..
   AWT Uses Windows component which means java is depending
on OS components which makes it dependant
   
  BUT Swings are introduce to make it independant

2) Primitive data type such as int makes java dependant
   But Wrapper classes such as Integer make it independant


Becaz of abov 2 reasons java is dependant....
 
Is This Answer Correct ?    1 Yes 2 No
K.k
[SEARCHIN FOR JOB]
 
  Re: Is Java is 100% pure OOPS? Explain?
Answer
# 15
Java is not pure OOPs because of Primitive data type and of 
static keyword.
 
Is This Answer Correct ?    1 Yes 0 No
Uttam Lonkar
 

 
 
 
Other Core Java Interview Questions
 
  Question Asked @ Answers
 
Difference between an argument and a parameter? HCL4
why we import both packages java.awt.*; and java.awt.event.*; as java.awt.*; can import all classes na. then what is the need of importing java.awt.event.*; ?  2
What is the need to implement Serializable interface (with no methods) for objects which are to be serialized ? We can write our own functionality which writes objects to streams then why we need to implement and tell JVM that which objects can be serialized. iFlex4
how to call One constructor from another; Innodata-Isogen7
what is marker interface ? what is the necessity of it? Accenture4
class A{ some variables; public void a()throws Excepion1,Exception2{....} } class B extends A{ variables... public void a()throws E2,E3{.....} } Qns: here override of methods occurs or not,ore else wil give any compilation error or run properly..plz tell me briefly whts happening with the above codes.... Quinnox3
What is the difference between serialization and deserialization? ABC2
Can an abstract class be final?  6
how to call a method in different package?  4
Can we access a database using applets?  2
Consider that class classA, abstract class classB, and final classC have been defined.Which one of the following is correct? 1. classA extends classC implements classB 2. class A extends classB, classC 3. classA extends classB 4. classB implements classC  1
What is static and a non-static inner class?  3
What is Hash Code in Java? Cognizent1
Hi Friends, can you give difference between extending thread class and implementing runnable interface.  3
Difference between String and StringBuffer. IBM3
I have one POJO class(Java bean class), it has two variables for that it has setters and getters. Now i have created two objects for that class and i have set the data for those variables through this two objects. Now question is i want check whether those two objects have same data or not, for this write a program? Thanks, Bose. Oracle2
what is the difference between multitasking and multithreading?  8
Is 'null' a keyword?  3
What happens when you assigned a 'double' value to a 'String'?  6
Difference between the String and StringBuffer classes?  3
 
For more Core Java Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

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