How many types of access specifier in c# and vb.net?

Answer Posted / vignesh

The access-specifiers available in C# are:

Public, Protected, Protected internal & Private

The access-specifiers available in Vb.net are:

Public, Private, Protected, Friend & ProtectedFriend

Is This Answer Correct ?    9 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the concepts involved in Object Oriented programming.

869


Why do we use polymorphism in oops?

782


What is overloading in oop?

757


Is enum a class?

791


How do you define social class?

808


c++ program to swap the objects of two different classes

2127


What is the purpose of polymorphism?

872


What is encapsulation c#?

804


What is abstraction in oops?

788


What is balance factor?

809


Describe these concepts: Polymorphism, Inheritance and Abstraction.

861


When not to use object oriented programming?

775


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2376


what is difference between class template and template class?

2395


Hi friends I have experience of 6 months in website design and maintanence. Now i am looking for other IT jobs.. to switch platform. please post any interview you know in chennai.

1972