is java purely oop Language?
Answers were Sorted based on User's Feedback
Answer / rajeshkannan.g
YES.Because java programming contains classes and objects.
| Is This Answer Correct ? | 2 Yes | 11 No |
Answer / kalaivani
yes, eventhough java is object oriented it doesn't support
the multiple inheritance overcome this we use interface
| Is This Answer Correct ? | 10 Yes | 21 No |
Answer / rajeshkannan.g
YES.Because java programming contains classes and objects.
| Is This Answer Correct ? | 1 Yes | 12 No |
Answer / rajeshkannan.g
YES.Because java programming contains classes and objects.
| Is This Answer Correct ? | 1 Yes | 13 No |
Answer / ashwini
Java supports almost all the features of oops like
class,objects,inheritance,polymorphism
| Is This Answer Correct ? | 7 Yes | 20 No |
Answer / madasamy.k
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 ? | 3 Yes | 16 No |
Answer / inbaraj
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 ? | 10 Yes | 33 No |
Answer / niyajmohd
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 ? | 50 Yes | 88 No |
can we create and enter the data & hide files using programmes ?
Which type does string inherit from?
Templates mean
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort
What is inheritance write a program to show use of inheritance?
In multiple inheritance , to create sub class object , is there need to create objects for its superclasses??? in java and c++ both. Actually i have some information that is , all available members from its superclasses , memory created in subclass obj , so no need to create object for its superclasses...??? Thanks in Advance
What polymorphism means?
Should you protect the global data in threads? Why or why not?
c++ is a purely oop concept?
What do you mean by variable?
Why do we use oop?
can you explain how to use JavaBean in Project