Tagged: Interview

C# .NET

C# .NET

1) Can we have private constructor? when can I use them? 2) what is an internal specifier? what happens internally when I use access specifier Internal ? 3) DO we have inline function in C#? otherwise what is equivalent inline function in C#? 1. Explain the differences between Server-side and Client-side...

QTP Interview Questions

QTP Interview Questions

QTP Interview Questions for the preparation of QTP Interview Full form of QTP ? Quick Test Professional What’s the QTP ? QTP is Mercury Interactive Functional Testing Tool. Which scripting language used by QTP ? QTP uses VB scripting. What’s the basic concept of QTP ? QTP is based on two...

Network Interview Questions

Network Interview Questions

What is MTU? How does TCP handshake work? How does SSL handshake work? What are the different phases in VPN establishment? How does DH (deffie helman) work? What is TCP window sizing? What is the difference between passive FTP and active FTP? What is the difference between socket and session? How...

Agile C++ Test Questions

Agile C++ Test Questions

Agile C++ Interview Preparation Questions: (1)the difference b/w pure virtual fn.& virtual fn. (a)pure virtual function. is initialized to zero. (b)

Caritor C Interview Questions

Caritor C Interview Questions

Carritor C Interview Questions For Job Seekers to Prepare for the Interview 1. Struct x { int i; char c; } union y{ struct x a; double d; }; printf("%d",sizeof(union y)); a)8 b)5 c)4 d)1 ans:8

C programming Questions

C programming Questions

C programming For Recent college graduates and professionals for job interview.: ————- some small C programs are given asked to tell the function/errors etc. one of the question(last in the paper) is an invalid statement. finish of all these very fast and think about those others. they are simple only.

Sasken C Interview Questions

Sasken C Interview Questions

Sasken C Interview Questions for Job Interview Seekers 1) If u have a linked list library, how do u design stack and queue using it; write pseudo code. 2) What are static variables and functions? 3) Write code in C to count the number of 1s in a character (1byte). 4)...

C Interview Questions

C Interview Questions

C Interview Questions For Recent graduates and Experienced professionals to gain the knowledge for the C Interview. 1: swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are the values x&y?