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 full form of oops?

605


How do you answer polymorphism?

577


What is stream in oop?

835


What makes a language oop?

591


What is encapsulation example?

545






#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

2157


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1452


Advantage and disadvantage of routing in telecom sector

781


What is ambiguity in inheritance?

620


What is advantage of inheritance?

685


What is difference between oop and pop?

609


What is the difference between static polymorphism and dynamic polymorphism?

577


What type of loop is a for loop?

682


explain sub-type and sub class? atleast u have differ it into 4 points?

1830


write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.

1773