is java purely oop Language?

Answer Posted / girish

No,java is not pure object oriented language ,not
everything done by an object.Pure oopl is small talk.

Is This Answer Correct ?    10 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are the realtime excercises in C++?

2337


Can bst contain duplicates?

678


Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.

704


What is encapsulation oop?

581


#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 type of questions

1697


Can we have inheritance without polymorphism?

619


what are the different types of qualifier in java?

1847


What is and I oop mean?

624


What do you mean by Encapsulation?

645


Why is oop better than procedural?

606


What is encapsulation selenium?

556


what is graphics

2014


What are the benefits of polymorphism?

628


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

1899