What is the output of the following program?
#include
main()
{
extern int a;
cout<<a;
}
int a=20;
(a) 20 (b) 0 (c) Garbage value (d) error
What is the difference between Response.Expires and Expires.Absolute in ASP.NET?
What are the different types of object used in ASP?
How to check the performance of SPS?
Write a SQL query to join multiple tables?
What are the types of optimization used in queries?
What is the difference between ISQL and OSQL?
What is the output of the following program?
main()
{
int a[5]={2,3};
cout<<a[2]<<a[3]<<a[4];
}
(a) Garbage value (b) 2 3 3 (c) 3 2 2 (d) 0 0 0
What is the output of the following program?
main()
{
int a,b;
a=sumdig(123);
b=sumdig(123);
cout<<a<
}
sumdig(int n)
{
static int s=0;
int d;
if(n!=0)
{
d=n%10;
n=(n-d)/10;
s=s+d;
sumdig(n);
}
else return(s);
}
(a) 12 6 (b) 6 12 (c) 3 15 (d) error
HR Interview:
Explain about your memorable days in college time?
Have you read any of Chetan Bhagat’s book?
What you like/dislike the most in it?
What was your biggest mistake?
Why haven’t you got a job yet?
You do not have all the experience we are seeking for this position.
Why do you want to quit your present job?
Have you ever made a mistake at work? How did you rectify it?