is java purely oop Language?

Answer Posted / simranjit kaur

java is not purely oops based.because java cann`t suppport
multiple and multi level inheritance.
but java support
some oops aaplications like
encapsulation ,inheritance,abstraction.and polymorphism.

Is This Answer Correct ?    2 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you inherit a private class?

633


What is abstract class in oop?

534


Can enum be null?

587


What are benefits of oop?

639


What is encapsulation in simple terms?

541






Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

2008


What are the advantages of polymorphism?

577


What is interface? When and where is it used?

1664


How is class defined?

588


Whats is abstraction in oops?

593


Write a program to reverse a string using recursive function?

1792


#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2068


what is the 3 types of system development life cycle

2435


What is destructor oops?

625


what are the ways in which a constructors can be called?

1583