is java purely oop Language?

Answer Posted / nagaraju

Java is partially object oriented programing language.

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 Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

1991


What does and I oop mean?

618


Is enum a class?

607


What is oops in simple words?

585


What is oops and why we use oops?

573






What is encapsulation process?

584


#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

2070


What is protected in oop?

604


What is the significance of classes in oop?

590


What is encapsulation in oops?

540


Why is object oriented programming so hard?

616


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

1897


write a program that takes input in digits and display the result in words from 1 to 1000

1989


How do you answer polymorphism?

577


How to call a non virtual function in the derived class by using base class pointer

5278