is java purely oop Language?

Answer Posted / teja

yes
java is purely oop language
becoz it satisfies all d concepts of oop's

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How long to learn object oriented programming?

579


Is oop better than procedural?

584


What is inheritance in oop?

610


What is this pointer in oop?

565


What is difference between oop and pop?

625






#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


what type of question are asked in thoughtworks pair programming round ?

1768


What is class and object in oops?

619


What is difference between abstraction and encapsulation?

598


i am getting an of the type can not convert int to int *. to overcome this problem what we should do?

1847


What is oops and its features?

597


What is a null tree?

640


What is static in oop?

595


Which language is pure oop?

560


What are the 3 principles of oop?

628