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 |
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Can the curly brackets { } be used to enclose a single line of code?
char ch=10;printf("%d",ch);what is the output
How can I get back to the interactive keyboard if stdin is redirected?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Explain data types & how many data types supported by c?
Are pointers really faster than arrays?
what's the return value of malloc()
What is void c?
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
Can u return two values using return keyword? If yes, how? If no, why?
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search