why java is called as a purely oops language.
Answers were Sorted based on User's Feedback
Answer / bhagya
java is called purely oops language why because poor opps
language means every thing should be done with the help of
objects only.in java whenever it is still using the c types
(just java is using the best functionalities in java)it is
possessing the oops concepts.it is clear that in java every
thing should be with in a class or a object.with out using
object we cannot do any thing in java.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / sujith
Java is not at all a purely oops language.
A language is called to be purely oops language if and only
if what ever we use in that are objects, including data
types. java still uses c types only except for Strings.
| Is This Answer Correct ? | 8 Yes | 6 No |
Answer / kiran
In Java,since every statement is written under some class( including main()), we can call-it pure o-o. But, Smalltalk is the language that is pure o-o than java
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a program to print “hello world” without using semicolon?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What are the average number of comparisons required to sort 3 elements?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What are the types of data structures in c?
Find if a number is power of two or not?
Is there any book to know about Basics of C Language?
In header files whether functions are declared or defined?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
What is calloc malloc realloc in c?