Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Code Snippets Interview Questions
Questions Answers Views Company eMail

What output does this program generate as shown? Why? class A { A() { cout << "A::A()" << endl; } ~A() { cout << "A::~A()" << endl; throw "A::exception"; } }; class B { B() { cout << "B::B()" << endl; throw "B::exception"; } ~B() { cout << "B::~B()"; } }; int main(int, char**) { try { cout << "Entering try...catch block" << endl; A objectA; B objectB; cout << "Exiting try...catch block" << endl; } catch (char* ex) { cout << ex << endl; } return 0; }

1102

Write a program that will convert an integer pointer to an integer and vice-versa.

965

Write a program that implements a date class containing day, month and year as data members. Implement assignment operator and copy constructor in this class.

960

Write code that allows to create only one instance of a class?

916

Write code to add functions, which would work as get and put properties of a class?

927

Write code to make an object work like a 2-d array?

899

Write a code snippet to display an integer in a binary format?

908

what is the structure of xml document ?

675

What is xml schema?

633

What is a cdata section in xml?

696

How to print sum of the numbers starting from 1 to 100?

844

Write a python program to swap the first and last value of a list?

962

Write a program to reverse a number in python?

912

Write a python program to check common letters in two input strings?

890

What is the output when we execute list(“hello”)?

1069


Un-Answered Questions { Code Snippets }

Write a program to find sum of the digits of a number in python?

924


Write a function that takes an array of integers and efficiently calculates and returns the Least Common Multiply in python.

1633


how to diplay a external image of output on winxp by using c & c++,

3523


I have a doubt regarding including tags in a function. I have written a function in javascript in a html page. The function got called by clicking a button, i want to display the results in same html page by placing tags in the function. (this hmtl page is static page) Is this possible? example: