What is OOPS and How it is different from Procedural
Programming ?
Answer Posted / pramendra kumar verma
oops is a simply a programming model that simplyfies
software development & maintainence by providing certain
rules and regulation for the development to followed to
developing and maintaining the software.oops have some
features like
object
classification
generlization&inheritence
polymorphism
data encapsulation
| Is This Answer Correct ? | 21 Yes | 22 No |
Post New Answer View All Answers
What is the fundamental idea of oop?
Why is destructor used?
What is static in oop?
What is the advantage of oop over procedural language?
What is coupling in oops?
Can you inherit a private class?
what are the ways in which a constructors can be called?
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.
What is destructor oops?
What is destructor in oop?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is the difference between encapsulation and polymorphism?
Give two or more real cenario of virtual function and vertual object
Which is not an object oriented programming language?
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.