is java purely oop Language?

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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you mean by variable?

572


#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

2061


String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?

1938


Which method cannot be overridden?

574


Why is polymorphism important in oop?

629






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

1891


What are the 4 pillars of oop?

666


Who invented oop?

647


How do you define social class?

594


Why is destructor used?

578


What is the difference between abstraction and polymorphism?

609


How do you use inheritance in unity?

586


What does sksksk mean in text slang?

1530


What are the data types in oop?

600


What is polymorphism used for?

566