Skip to main content

Posts

Insta I'd

Recent posts

Object oriented programming using Cpp (BCA-301) . Question paper with Solution. (Year 2020)

OOPs Using C++. Question paper with solution. Very Short Answer Questions (Attempt All)  (3*5=15). 1- Define Encapsulation? Ans-  Encapsulation is a programming principle that refers to the bundling of data and functions that operate on that data within a single unit or object. It is used to hide the implementation details of a class from the outside world and to make the object self-contained, so that it can be treated as a black box that can be used and interacted with without the need for other parts of the program to know how the object's internal data and functions are implemented. Encapsulation is one of the fundamental principles of object-oriented programming and is used to reduce the complexity of a program and make it easier to maintain and modify over time. 2- List the features of OOPs. Ans- Object-oriented programming (OOP) is a programming paradigm that is based on the concept of "objects", which can contain data and code that operates on that data. Some of t...