JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?

Answers were Sorted based on User's Feedback



JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?..

Answer / shobhit jain

Java is not completely object oriented language as it has
still got built in data types like int, float etc for which
we do not create objects.

Is This Answer Correct ?    7 Yes 0 No

JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?..

Answer / gganesh

Yes, the JAVA is the fully object oriented, bcoz in java we
can create object for main function also, bcoz main function
written in class

Is This Answer Correct ?    11 Yes 6 No

JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?..

Answer / umashankar mishra

yes..becoz every thing place in class including main()
and object is created by new operator

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More OOPS Interview Questions

#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

0 Answers  


How is data security provided in Object Oriented languages? ?

5 Answers  


write a program to find the largest of two numbers without using for,while,switch,if else, conditional operator and do while using c++ pgmng language

3 Answers   Satyam,


What normal C constructs work differently in C++?

2 Answers  


tel me oops defination in single line

2 Answers  






write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.

0 Answers   Microsoft, TCS,


what type of questions

0 Answers   IBM,


what is difference b/w object based and object oriented programming language?

18 Answers   Chaitanya, College School Exams Tests, Educomp, IBM, Infosys, Telko,


Which language is not a true object oriented programming language?

0 Answers  


What is the difference between and interface and an abstract class ?

4 Answers   IBM, Infosys, Ness Technologies,


What are the three parts of a simple empty class?

0 Answers  


how much classes are used in c++

5 Answers  


Categories