why java is called as a purely oops language.

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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is infinite loop?

630


What is structure packing in c?

608


What is the advantage of using #define to declare a constant?

621


What is the difference between the = symbol and == symbol?

629


What is the mean of function?

649






What are the disadvantages of c language?

622


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

600


What is meant by operator precedence?

678


What does %c do in c?

584


What are the preprocessor categories?

639


What is volatile variable in c with example?

588


Explain logical errors? Compare with syntax errors.

629


The statement, int(*x[]) () what does in indicate?

647


How can I dynamically allocate arrays?

594


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

700