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 |
i^=j; j^=i; i^=j; value of i,j
Describe these concepts: Polymorphism, Inheritance and Abstraction.
create a c++ program that will ask 10 numbers and display their sum using array.
how to find the correct email address format by using the programe?
Definition of Object Oriented Programming in single line?
33 Answers Impact Systems, Q3 Technologies, TCS,
write a C++ program for booking using constructor and destructor.
What does the keyword "static" mean?
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!!!)
What are two types of polymorphism?
Why is destructor used?
Which is the only operator in C++ which can be overloaded but NOT inherited?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> 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