Question
also Asked @
Answers
Views
select
Test approach to windows update? 0 39
How do u identify the object that it is a standard object or not 3 1581
What is the output for the following program
#include<stdio.h>
main()
{
char a[5][5],flag;
a[0][0]='A';
flag=((a==*a)&&(*a==a[0]));
printf("%d\n",flag);
}
Wipro 3 975
#ifdef TRUE
int I=0;
#endif
main()
{
int j=0;
printf("%d %d\n",i,j);
}
2 689
Give the output for the following program.
#define STYLE1 char
main()
{
typedef char STYLE2;
STYLE1 x;
STYLE2 y;
clrscr();
x=255;
y=255;
printf("%d %d\n",x,y);
}
1 701
What is the output for the program given below
typedef enum grade{GOOD,BAD,WORST,}BAD;
main()
{
BAD g1;
g1=1;
printf("%d",g1);
}
2 845
What is the memory allocated by the following definition ?
int (*x)(); 2 962
What is the memory allocated by the following definition ?
int (*x)[10];
3 1183
What is the output of the following program
#include<stdio.h>
main()
{
int i=0;
fork();
printf("%d",i++);
fork();
printf("%d",i++);
fork();
wait();
} 2 738
What is the output of the program given below
#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
} 11 1078
How do you collect the metric? 2 1834
How do you test cookies? 9 2811
what are the major observations that you made when you are
doing compatibility testing particularly in web applications? 3 1634
How do you carry usability testing? Intel Grapecity Cts 3 2451
How do you create a startup script in winrunner and what is
consists generally? 2 1556
E-Mail New Answers
Answer Selected Questions
[1] 2 Next