EnggRoom - Placement - HCL Campus Placement
EnggRoom - Placement - HCL Campus Placement
Technical Paper
Gurgaon, 2009
Ans: (a)
Ans: (b)
3. For a 25MHz processor , what is the time taken by the instruction which needs 3 clock
cycles,
(a)120 nano secs
(b)120 micro secs
(c)75 nano secs
(d)75 micro secs
Ans. (b)
union u
{
struct st
{
int i : 4;
int j : 4;
int k : 4;
int l;
}st;
int i;
}u;
main()
{
u.i = 100;
printf(“%d, %d, %d”,u.i, u.st.i, u.st.l);
}
a. 4, 4, 0
b. 0, 0, 0
c. 100, 4, 0
d. 40, 4, 0
Ans: c) 100, 4, 0
7.
union u
{
union u
{
int i;
int j;
}a[10];
int b[10];
}u;
main()
{
printf(“\n%d”, sizeof(u));
printf(” %d”, sizeof(u.a));
// printf(“%d”, sizeof(u.a[4].i));
}
a. 4, 4, 4
b. 40, 4, 4
c. 1, 100, 1
d. 40 400 4
Ans: 20, 200, error for 3rd printf
8.
main()
{
int (*functable[2])(char *format, …) ={printf, scanf};
int i = 100;
(*functable[0])(“%d”, i);
(*functable[1])(“%d”, i);
(*functable[1])(“%d”, i);
(*functable[0])(“%d”, &i);
9.
main()
{
int i, j, *p;
i = 25;
j = 100;
p = &i; // Address of i is assigned to pointer p
printf(“%f”, i/(*p) ); // i is divided by pointer p
}
a. Runtime error.
b. 1.00000
c. Compile error
d. 0.00000
Ans: c) Error becoz i/(*p) is 25/25 i.e 1 which is int & printed as a float,
So abnormal program termination,
runs if (float) i/(*p) —–> Type Casting
10.
main()
{
int i, j;
scanf(“%d %d”+scanf(“%d %d”, &i, &j));
printf(“%d %d”, i, j);
}
a. Runtime error.
b. 0, 0
c. Compile error
d. the first two values entered by the user
Ans: d) two values entered, 3rd will be null pointer assignment
11.
main()
{
char *p = “hello world”;
p[0] = ‘H’;
printf(“%s”, p);
}
a. Runtime error.
b. “Hello world”
c. Compile error
d. “hello world”
Ans: b) Hello world
12.
main()
{
char * strA;
char * strB = I am OK;
memcpy( strA, strB, 6);
}
a. Runtime error.
b. I am OK
c. Compile error
d. I am O
Ans: c) I am OK is not in ” ”
14.
const int perplexed = 2;
#define perplexed 3
main()
{
#ifdef perplexed
#undef perplexed
#define perplexed 4
#endif
printf(“%d”,perplexed);
}
a. 0
b. 2
c. 4
d. none of the above
Ans: c)
15.
struct Foo
{
char *pName;
};
main()
{
struct Foo *obj = malloc(sizeof(struct Foo));
clrscr();
strcpy(obj->pName,”Your Name”);
printf(“%s”, obj->pName);
}
a. Your Name
b. compile error
c. Name
d. Runtime error
Ans a)