is java purely oop Language?

Answer Posted / vikash singh-143

No,java is not pure OOPL just because of primitive data
types.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is oops and its features?

597


What is abstraction example?

630


What are the important components of cohesion?

562


What is the advantage of oop over procedural language?

634


write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.

1800






Why do we use oop?

611


What is the difference between static polymorphism and dynamic polymorphism?

590


what is difference between class template and template class?

2167


Can an interface inherit a class?

568


What are the 5 oop principles?

612


What is purpose of inheritance?

653


What does and I oop and sksksk mean?

663


program for insertion ,deletion,sorting in double link list

2289


What are the benefits of polymorphism?

631


#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

2078