why c++ is called OOPS?
waht is inherutance?
what is compiler?

Answer Posted / aswani

c++ supports the concepts of oops concepts like object, class, abstraction and encapsulaton, polymorphism, inheritance.

Inheritance is the process by which the objects of one class acquire the properties of objects of another class....

Compiler is a computer program that transforms source code writen in a computer language into a machine language...

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the example of polymorphism?

558


What is abstraction with example?

607


What is pure oop?

597


What is destructor give example?

603


What is the point of oop?

656






Why do we need oop?

671


Why is encapsulation used?

577


What does I oop mean?

616


write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory

2761


How many human genes are polymorphic?

573


Which is better struts or spring?

621


Plese get me a perfect C++ program for railway/airway reservation with all details.

3429


Why multiple inheritance is not allowed?

584


What is interface? When and where is it used?

1664


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.

1639