why java is called as a purely oops language.

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is methods in c?

641


What is restrict keyword in c?

645


Why do we use & in c?

591


Explain what is the use of a semicolon (;) at the end of every program statement?

735


What does %p mean c?

630






What is the use of a conditional inclusion statement in C?

602


What is %d used for?

585


Explain what are the advantages and disadvantages of a heap?

597


Where we use clrscr in c?

706


What should malloc(0) do?

615


What are bitwise shift operators in c programming?

646


Tell me is null always defined as 0(zero)?

674


What is operator promotion?

629


What are the differences between Structures and Arrays?

609


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1959