How many types of access specifier in c# and vb.net?
Answer / 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 |
What is abstraction encapsulation?
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
Write a C++ program to conduct an election of a mayor.Declare a class ELECTION With the following specification: Data member: Name 25 character Age Integer symbol 1 character Member functions: To accept data for 20 contestant To accept symbol as voting from 100 voters. To declare the winner and the loser.
1 Answers Global Academy, Infotech,
how does a main() in C++ is different from main() in C?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
What is the difference between and interface and an abstract class ?
4 Answers IBM, Infosys, Ness Technologies,
Where is pseudocode used?
can main method be overloaded...??? How..????
Why is encapsulation used?
class type to basic type conversion
Write 7 differences between "Public" function and "Private" function?
what is the difference between containership and inheritence?