what is difference b/w object based and object oriented
programming language?
Answer Posted / lalit kumar
The main difference between object based and object oriented
language is the language which supports concepts of
inheritence and dynamic binding is known as object oriented
and the language which doesnot support these 2 concepts is
called object based language.
| Is This Answer Correct ? | 36 Yes | 4 No |
Post New Answer View All Answers
What is the real time example of inheritance?
What is inheritance in simple words?
What is polymorphism oop?
What is abstraction example?
Why interface is used?
What is difference between data abstraction and encapsulation?
Why do we use encapsulation in oops?
What is polymorphism in oop example?
What does and I oop mean in text?
What is protected in oop?
What is polymorphism and example?
What does no cap mean?
Get me an image implementation program.
What is meant by oops concept?
Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.