JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
WILL I GET A guaranteed JOB AFTER DOING bsc()IT) and GNIIT from an NIIT CENTRE??
21 Answers Biocon, MIT, NIIT,
This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.
can we create and enter the data & hide files using programmes ?
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
What are the valid types of data that the main () can return in C/C++ language
Why do we use class?
What is difference between multiple inheritance and multilevel inheritance?
Can enum be null?
all about pointers
WAP to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
diff between Virtual mathod and abstract method?
What is polymorphism and why is it important?