is java purely oop Language?

Answer Posted / rajeshkannan.g

YES.Because java programming contains classes and objects.

Is This Answer Correct ?    1 Yes 12 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the types of inheritance?

782


How do you define social class?

785


write string class as your own class in java without using any built-in function

2186


Can an interface inherit a class?

761


What is destructor oops?

821


What is the example of polymorphism?

730


What is class encapsulation?

800


What is multilevel inheritance?

928


#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

2348


What is object and class in oops?

772


How do you answer polymorphism?

779


What is difference between oop and pop?

842


What is the use of oops?

777


What is purpose of inheritance?

835


What are the types of abstraction?

750