New STL Interview Questions :: ALLInterview.com http://www.allinterview.com New STL Interview Questions en-us Explain when u will use Observer pattern and how u will implement in http://www.allinterview.com/showanswers/77800.html I am doing my BS.c MATHS CAN I ABLE TO JOIN IN NIIT? http://www.allinterview.com/showanswers/73822.html Yes, sure u can join it. What is the underlying datastructure of map? http://www.allinterview.com/showanswers/71570.html hash table What is the Difference between CArray and CList? http://www.allinterview.com/showanswers/71569.html CArray has static Size u defined at the time u declare and CList Dynamically grow. how to swap two numbers in a linked list without exchanging the data http://www.allinterview.com/showanswers/70170.html Suppose List contains 3 no. 10, 20, 30 try to exchange 10 and 20. head points to 10. temp = head; head = head -> next; temp -> next = head - next; head -> next = temp; I think it works.. what is use of for loop? http://www.allinterview.com/showanswers/69856.html for loop use is more then one calculation or process can be performed, for example: for(int i=0;i<5;i++) { printf("%d",i); } In the above example the printf statement can be excuted how can u do connectivity in c++ language? plz send me connectivity http://www.allinterview.com/showanswers/61239.html what is strcture i++ i ++i answer to this i=5 what http://www.allinterview.com/showanswers/61232.html The o/p will be as follows:- 666 reason:- in c++ in cascading the processing will be from RHS. hence first "++i" will be executed and gives value 6. after that "i" is executed as 6 and finally "i++&q Waht is inheritance http://www.allinterview.com/showanswers/61231.html inheritance is way to access the properties of super class What is Constructor http://www.allinterview.com/showanswers/61229.html IT IS A MEMBER FUNCTION WHOSE TASK IS TO INITIALIZE THE OBJECTS OF ITS CLAASS. IT IS INVOKED A SOON AS THE OBJECT ASSOCIATED WITH THAT CLASS IS CREATED. ITS TYPES:- 1> COPY CONSTRUCTOR 2> PARAMITERISED CONSTRUCTOR 3> DUMMY CONSTR What is Object Oriental Progam http://www.allinterview.com/showanswers/61228.html Every thing is done using objects. Distinguish between: a) Normal layout &amp; Print Layout views b) Wi http://www.allinterview.com/showanswers/60453.html Define the terms: field, record, table and database http://www.allinterview.com/showanswers/60452.html Field A space allocated for a particular item of information. A tax form, for example, contains a number of fields: one for your name, one for your Social Security number, one for your income, and so on. In database systems, fields are the To modify an, existing worksheet. What steps are involved for: 1. I http://www.allinterview.com/showanswers/60451.html Explain how to insert a hyperlink in to an Excel worksheet and save http://www.allinterview.com/showanswers/60450.html Hyperlink creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet. When you click the cell that contains the HYPERLINK function, Microsoft Excel opens the file stored at link location. HYPERL