what is difference between c++ language and java language
Answer Posted / srinivas reddy
both are oop languages.But we can efficiently programming with java because it is having more features like servlets,applets,
event handling.And also java is used in internet applications.
Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
write a program that takes input in digits and display the result in words from 1 to 1000
What are oops methods?
What are two types of polymorphism?
Can static class have constructor?
What is stream in oop?
What is pointer in oop?
What is abstraction example?
What is a function in oop?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
What is oops in programming?
2. Give the different notations for the class.\
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
Why do while loop is used?
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.
Can we create object of interface?