What is OOPS and How it is different from Procedural
Programming ?
Answer Posted / oopslover
Oops is programing concept which works around the its object
and data, it works on real world objects. helps us in
building robust application, provides more security through
its objects. where as procedural language is totally
different it implies to use different functional things to
be used under one single function e.g "main" method in C.
The logic is expose to the whole program.
| Is This Answer Correct ? | 44 Yes | 39 No |
Post New Answer View All Answers
Why do we use encapsulation in oops?
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
How do you achieve runtime polymorphism?
What is the real time example of inheritance?
Why do we use inheritance?
What is purpose of inheritance?
What is cohesion in oop?
Why do we use polymorphism?
write a C++ program for booking using constructor and destructor.
Can abstract class have normal methods?
What is overloading and its types?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
What is the benefit of oop?
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.
Can bst contain duplicates?