is java purely oop Language?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between a constructor and a destructor?

828


What is encapsulation process?

772


Write a c++ program to display pass and fail for three student using static member function

3065


What do you mean by Encapsulation?

796


What is polymorphism what is it for and how is it used?

745


What is an advantage of polymorphism?

802


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1600


Why we use classes in oop?

747


write a program to find 2 power of a 5digit number with out using big int and exponent ?

2109


What is object in oop?

861


Why is static class not inherited?

804


What is object-oriented programming? Webopedia definition

935


What is polymorphism explain?

942


#include #include #include #include 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

2348


What is the real time example of encapsulation?

784