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; }

1041

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

892

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.

870

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

846

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

853

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

835

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

833

what is the structure of xml document ?

613

What is xml schema?

564

What is a cdata section in xml?

633

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

796

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

893

Write a program to reverse a number in python?

841

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

831

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

1011


Un-Answered Questions { Code Snippets }

How can a procedure fetch data from FTP? I need a general code for this..

1365


Code for Adding Scripting Support to an Application?

1384


What is XML Parser?

708


How a web page can communicate with a web server while a user type characters in an input field.

1060


How to Split Strings with Regex in Managed C++ Applications?

3673


Create a program to read two random data set in two files named data1.txt and data2.txt manifold contains integer numbers, whereas data2.txt file contains the float type numbers. Simpanlahmasing each into 2 pieces of data that is an array of type integer array and an array of type float, then calculate the average numbers in the second array.

2606


How can get all database name using Php and Sql?

2179


Hi, i have a project that the teacher want a pyramid of numbers in C# or java...when we click a button...the pyramid should be generated in a listbox/or JtextArea...and the pyramid should have the folowing form: 1 232 34543 4567654 567898765 67890109876 7890123210987 890123454321098 90123456765432109 0123456789876543210 Plz help with codes...didn't find anything on the net.

3238


Write a python program to check if a number is an armstrong number?

775


Code for Communicating over Sockets?

2364


Given a circular list of integers (when you reach the end of the list you come back to the beginning), what is the most efficient algorithm to find the smallest integer in the list? For example: circular_list = [22, 52, 66, 82, 5, 8, 12, 19].

1742


code to create a new window

2178


Coding for Synchronizing Cache Access in ASP.NET?

3644


can you please write a program for deadlock that can detect deadlock and to prevent deadlock.

3234


Write a Program to truncate a given floating point value (e.g.16.25=16).

876