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...



Programming Code Interview Questions
Questions Answers Views Company eMail

Write a program to Print the Pascal triangle

InterGraph,

833

Write a Program for matrix multiplication.

InterGraph,

905

Write a Program to find the reverse of a given number.

InterGraph,

829

What output does the following code generate? Why? What output does it generate if you make A::Foo() a pure virtual function? class A { A() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; class B : public A { B() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; int main(int, char**) { A objectA; B objectB; return 0; }

1227

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.

890

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.

868

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

843

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

851

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

833

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

829

int a=1; printf("%d %d %d",a++,a++,a); need o/p in 'c' and what explanation too

1 2053

Question 1: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date. *This Should Be Done IN C++

1165

To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates. String contains only lowercase characters ['a'-'z']

992

Ramesh’s basic salary is input through the keyboard. His dearness allowance is 40% of basic salary, and house rent allowance is 20% of basic salary. Write a program to calculate his gross salary.

1 2341


Un-Answered Questions { Programming Code }

how to test pierrot divisor

2762


create a .dll component operation and use created component in another project. required methods events and properties. connect, add,search,data report

2509


what full form name of B.K.U.

3053


Coding for Synchronizing Cache Access in ASP.NET?

3642


How to get Dynamically Linked Comboboxes Set?

2441


design a class car having variables model, yr_of_manufacture, owner,reg_no. Design methods for assigning the values, Printing the values( you decide gui,control, any other methods if require)

2143


How to create Date method to set the date in Ms Access

2302


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

873


How to export 2 datatables of a single dataset to 2 different worksheets of a single MSExcel file ?

2433


What is the functionality of GetWindowTextLength?

611


Code for Two Classes for Doing Gzip in Memory?

3262


can you use proc sql to manpulate a data set or would u prefer to use proc report ? if so why ? make up an example and explain in detail

3000


What is Generic" J2ME architecture?

2231


Set up procedure for generating a wire frame display of a polyhedron with the hidden edges of the object drawn with dashed lines

3538


Given a table of the form: Product Sold on A 1/1/1980 B 1/1/1980 C 1/1/1980 A 1/1/1980 B 1/1/1980 C 2/1/1980 A 2/1/1980 There are 30 products and 10,000 records of such type. Also the month period during which sales happened is given to u. Write the program to display the result as: Product Month No. of copies A January 12 A February 15 A March 27 B January 54 B February 15 B March 10 C January 37

2513