Answer Posted / yughandhar
public:
public is an access specifier which can be used throughout
the program.
protected:
protected is an access specifier which can be used in the
specified class and its derived class...
private:
private is an access speifier which can be used whithin the
class in which it is declared.
These three access specifiers are used for providing the
security
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What is encapsulation in ict?
Whats oop mean?
Explain the concepts involved in Object Oriented programming.
What is a null tree?
What is this pointer in oop?
How long to learn object oriented programming?
What is the advantage of oop over procedural language?
What is the highest level of cohesion?
What is constructor overloading 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!!!)
2. Give the different notations for the class.\
How to call a non virtual function in the derived class by using base class pointer
What is object in oops?
What is multilevel inheritance?
What is polymorphism and example?