1.------- is associated with
webservices.
a) WSDL b) WML c) web sphere d) web logic
2.any large single block of data stored in a database, such as a picture or
sound file, which does not include record fields, and cannot be directly
searched by the databaseâs search engine.
a) TABLE b) BLOB c) VIEW d) SCHEME
3.A reserved area of the immediate access memeory used to increase the running
speed of the computer
program.
a) session memory b) bubble memory
c) cache memory d)
shared memory
4.a small subnet that sit between atrusted internal network and an untruster
external network, such as the public internet.
a) LAN b) MAN c) WAN d) DMZ
5.technologies that use radio waves to automatically identify people or
objects,which is very similar to the barcode identification systems,seen in
retail stores everyday.
a)BLUETOOTH b) RADAR c)RSA SECURE ID
d)RFID
6.
main()
{
float fl = 10.5;
double dbl = 10.5
if(fl ==dbl)
printf(âUNITED WE STANDâ);
else
printf(âDIVIDE AND RULEâ)
}
what is the output?
a) compilation error b)UNITED WE STAND c)DIVIDE AND
RULE d)linkage error.
7.
main()
{
static int ivar = 5;
printf(â%dâ,ivar--);
if(ivar)
main();
}
what is the output?
a)1 2 3 4 5 b) 5 4 3 2 1 c)5 d)compiler
error:main cannot be recursive function.
8.main()
{
extern int iExtern;
iExtern = 20;
printf(â%dâ,iExtern);
}
what is the output?
a)2 b) 20 c)compile error d)linker error
9..
#define clrscr() 100
main()
{
clrscr();
printf(â%d\n\tâ, clrscr());
}
what is the output?
a)100 b)10 c)compiler errord)linkage error
10.
main()
{
void *vpointer;
char cHar = âgâ, *cHarpointer =
âGOOGLEâ;
int j = 40;
vpointer = &cHar;
printf(â%câ,*(char*)vpointer);
vpointer = &j;
printf(â%dâ,*(int *)vpointer);
vpointer = cHarpointer;
printf(â%sâ,(char*)vpointer +3);
}
what is the output?
a)g40GLE b)g40GOOGLE c)g0GLE d)g4GOO
11.
#define FALSE -1
#define TRUE 1
#define NULL 0
main()
{
if (NULL)
puts (âNULLâ);
else if(FALSE)
puts (âTRUEâ);
else
puts (âFALSEâ);
}
what is the output?
a) NULL b) TRUE c) FALSE d)0
12.
main()
{
int i =5,j= 6, z;
printf(â%dâ,i+++j);
}
what is the output?
a)13 b)12 c)11 d) compiler error
13.
main()
{
int i ;
i = accumulator();
printf(â%dâ,i);
}
accumulator()
{
_AX =1000;
}
what is output?
a)1 b)10 c)100 d)1000
14.
main()
{
int i =0;
while(+(+i--)!= 0)
i- = i++;
printf(â%dâ,i);
}
what is the output?
a)-1 b)0 c)1 d)will go in an infinite loop
15.
main()
{
int i =3;
for(; i++=0;)
printf((â%dâ,i);
}
what is the output?
a)1b)2c)1 2 3d)compiler error:L value required.
16.
main()
{
int i = 10, j =20;
j = i ,j?(i,j)?i :j:j;
printf(â%d%dâ,i,j);
}what is the output?
a)20 b)20 c)10 d)10,10
17.
main()
{
extern i;
printf(â%d\tâ,i);{
int i =20;
printf(â%d\tâ,i);
}
}
what is output?
a) âExtern valueof i â 20 b)Externvalue of iâc)20d)linker Error:unresolved external symbol i
18.
int DIMension(int array[])
{
return sizeof(array/sizeof(int));
}
main()
{
int arr[10];
printf(âArray dimension is
%dâ,DIMension(arr));
}
what is output?
a)array dimension is 10 b)array
dimension is 1
c) array dimension is 2 d)array dimension is 5
19.
main()
{
void swap();
int x = 45, y = 15;
swap(&x,&y);
printf(âx = %d y=%dâx,y);
}
void swap(int *a, int *b)
{