Which is not a storage class?
What is the output of the following code?
int n = 4;
n = n >> 2;
cout << n;
Which of the following accesses a variable in structure *b?
Which programming approach does POP (Procedural-Oriented Programming) employ?
What is the output of the following C code?
int main()
{
int x=5;
int *const ptr=&x;
++(*ptr);
printf("%d",x);
}
Given a number of elements in the range [0….n3]. which of the following sorting algorithms can sort them in O(n) time?
class A
{
int i;
public:
void print(){cout<<"hello"<<i;}
}
class B: public A
{
int j;
public:
void assign(int a){j = a;}
}
Which of the following is used to make an abstract class?
What are the Extraction operators in C++?
Consider the following ANSI C function:
int SomeFunction (int x, int y) { if ((x==1) || (y==1)) return 1; if (x==y) return x; if (x > y) return SomeFunction(x-y, y); if (y > x) return SomeFunction (x, y-x); }
The value returned by SomeFunction(15, 255) is
OnSite
1 Openings
FullTime
Posted 17 days ago