Java violates few objected oriented concepts. Can you
explain in what way?
Answers were Sorted based on User's Feedback
Answer / rohan
Java is not a pure object oriented language that's true
because when we use int,float,char we need not define any
class for that their is a class called raper classes which
are by default give this made the java to violates some
object oriented concept...
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / anjani kumar jha
There are only three language in the world which is
pure-object oriented
a)effilmore
b)Small-Talk
c)Ruby
So therefore for pure object oriented programming there are
six concept
a)Encapsulation
b)Polymorphism
c)Inheritance
d)Abstraction
//These two e) and f) are not supported by java and hence
java is not //pure object programming language-----it is
only true //object oriented programming language.....
e)There should not be primitive
f)And there should not be any boudation on classes.
Thanks and Regards
Anjani Kumar Jha
09623154095
CDAC,PUNE
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / pushpa
Multiple Inheritence
even if it is supported through the interfaces
it's not possible through basic object oriented concepts
| Is This Answer Correct ? | 4 Yes | 3 No |
what is optional in java 8?
Can you explain the final method modifier?
What is java and why do we need it? Explain
What all methods are used to prevent thread execution ?
Is string is a data type?
Where is jre installed?
Given: 1. package test; 2. 3. class Target { 4. public String name = “hello”; 5. } What can directly access and change the value of the variable name? 1 any class 2 only the Target class 3 any class in the test package 4 any class that extends Target
what is Inheritense
Write an algorithm program in java for the following question.. In a VLSI design techniques,they used rectangles to design circuits. EVery rectangle is to be placed according to x,y coordinates. Check whether or not two rectangles overlap each other. Here overlapping of rectangles is acceptable, if 1) one rectangle intersect with other. 2) one rectangle fully covers other. The time of algorithm should not exceed o(n logn).
what is the J2EE BluPrints?
What is compile time polymorphism?
20 Answers CTS, Elementus Technologies, Oracle,
What is the do while loop syntax?