What are the access specifiers avaible in c++?
Answers were Sorted based on User's Feedback
Answer / kanan
public,
private ,
protected ,
internal and
protected internal
public :
public is the most common access specifier in C# . It can be
access from anywhere, that means there is no restriction on
accessibility. The scope of the accessibility is inside
class as well as outside. The type or member can be accessed
by any other code in the same assembly or another assembly
that references it.
private :
The scope of the accessibility is limited only inside the
classes or struct in which they are declared. The private
members cannot be accessed outside the class and it is the
least permissive access level.
protected :
The scope of accessibility is limited within the class or
struct and the class derived (Inherited )from this class.
internal :
The internal access modifiers can access within the program
that contain its declarations and also access within the
same assembly level but not from another assembly.
protected internal :
Protected internal is the same access levels of both
protected and internal. It can access anywhere in the same
assembly and in the same class also the classes inherited
from the same class .
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / xxx
The last answer is wrong. internal and Protected Internal
not there in C++. Answer is relevant to C# not C++.
| Is This Answer Correct ? | 4 Yes | 1 No |
Where is pseudocode used?
What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
Have you ever used threads?
What is multiple inheritance ?
17 Answers Blue Star, C DAC, CDAC, Impetus, Ness Technologies, Softvision Solution,
what is the technical or oop name of object?
What is difference between pop and oop?
What is polymorphism what are the different types of polymorphism?
How to deploy web appliction in web logic ?
What is function overloading and operator overloading?
What is polymorphism explain its types?
what is the use of mutable key word