Hello friends welcome to My blog "Interview Introduction " . Today we are going to learn Interview questions with answers of C/C++ programming. C and C++ Programming Interview Questions And Answers 1)What is the full form of OOPS? Ans: Object Oriented Programming System. 2)What is a class? Ans: Class is a blue print which reflects the entities attributes and actions. Technically defining a class is designing an user defined data type. 3)What is an object? Ans: An instance of the class is called as object. 4)List the types of inheritance supported in C++? Ans: Single, Multilevel, Multiple, Hierarchical and Hybrid. 5)What is the role of protected access specifier? Ans: If a class member is protected then it is accessible in the inherited class. However, outside the both the private and protected members are not accessible. 6)What is encapsulation? Ans: The process of binding the data and the functions acting on the data together in an entity (class) cal...