4..6
A is a class & B is a new class derived from A
A a;
B b;
Bb1;
B b2;
4. what c++ syntax is used to declare that a class B is derived from Class A”
a. class A derives B {……};
b. class B: public A {,……..};
5. using the variable , which is legat?
a. a=b;
b. b=a;
c. b1=b2;
d. both a & b are legal but not c;
e. both a & c are legal but not b;
f. both b & c are legal , but not a;
6. suppose there ar e 2 fns. F has an argument of type A and g has an argument of type B. Which is correct?
a. both f(a) & g(a) are legal fn. Calls
b. f(a) is legal , but g(a) is not legal
c. f(a) is not legal , g(a) is legal
d. neither f(a) nor g(a) is legal fn call
7. template
void foo(Item x);
which is right way to call with integer argument I?
a. foo(i);
b. foo
c. foo
d. foo(
e. foo(
8.
9. void quiz(int w)
{
if(w>1)
{ quiz (w/2);
quiz(w/2);
}
printf(“*”);
}
how many asterisks are printed by the function call quiz(5)?
a. 3
b. 4
c. 7
d. 8
10. void test_a (int n)
{
printf(“%d”,n);
if(n>0)
test_a(n-2);
}
test_a(4)?
a . 0 2 4
c. 0 2
d. 2 4
e. 4 2
f. 4 2 0
11. char string[8]=”abcdefg”;
*string=’\0’;
printf(“%s”,string);
a. compiler error
b. run-time error
c. no o/p, but no error
d. creates bcdefg
12. char string[8]=”abcdefg”
o/p :
printf(“%s\n”,string +3);
abcdefg
abc
defg
cdefg
13. main()
{ int I=-3, j=2,k=0,m;
m=++I&&++j||++k;
printf(“\n%d%d%D”, I,j,k,m);
–2 3 0 1
–2 3 1 1
–2 3 1 0
–2 3 0 0
14. main()
{
int I;
for(;;)
{
printf(“%d”,I++)
if(I>10)
break;
}
}
a. condition in a for-loop is mudt
b. no error
c. 2 ; shud be dropped
15.void goop ( int z[]);//prototype
int x[10];
which ois the correct way to call goop
a. goop(x);
b. goop(x[]);
c. goop(x[10]);
d. goop(&x);
e. goop(&x[]);
16. int a=3,b=17;
a=b%a;
b=++a+5;
printf(“a,b);
2 8
2 7
3 7
2 8
none
18. how many time shello will be printed?
FILE *fp=fopen(“test.txt”,w)
Fprintf(fp,”hello”);
Fork();
1
2
0
none
19. int a;
int b=0;
while(a)
{
{ a&=a-1;
b++;
}
a &b
0 & 15
1 & 16
0 & 16
none
20. class A
{
public:
static int a;
A() {a=10};
};
int main()
{
A b;
Printf(“%d”,b.a);
Return 0;
}
will the program compile?
a yes
b. no
No comments:
Post a Comment