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

Cau u say the output....?

1 2960

could you please teach me how to program an income tax using functions

246

write a vb script to check equal two 2*2 matrix

1417

How to get one hasmap value in another hashmap ,only value not key

CTS,

1429

Write a script to delete all the files in a folder except one desired file.

1288

I have multiple datasets and I have to search a particular string in all of them at a single time. Please suggest a full jcl or rexx tool for it.

971

#define a 10 int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } void foo() { #undef a #define a 50 }

3 3602

#define a 10 void foo() { #undef a #define a 50 } int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } explain the answer

1 3409

What is your nationality?

GoDB Tech,

1 6651

#include int main(void) { int a=4, b=2; a=b<>2 ; printf("%d",a); return 0; }

Student,

1575

Do you think about CMM(Capability Maturity Model) process?

Amazon,

936

What is an attribute?

611

How can you apply a DTD to an XML document?

555

What is XML DOM?

637

What is XQuery?

578


Un-Answered Questions { Code Snippets }

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

816


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

988


How can export database using php code?

1953


how to remove or delete multiple selected items from listbox in on button click in asp?

643


What is the best way to make wordpress plugin

3015


Can you write a program to find the average of numbers in a list in python?

796


What is the functionality of EnumWindows?

554


Write a program that print in screen a tree with its height taken from user by entering number of 4 digits and find the odd numbers then calculate the sum of odd numbers so he get the height of tree?

3314


write a program that can LOCATE and INSERT elements in array using c++ programming languages.

3966


How can I include conditional statements in XML?

593


what mean void creat_object?in public class in this code class A{ public: int x; A(){ cout << endl<< "Constructor A";} ~A(){ cout << endl<< "Destructor A, x is\t"<< x;} }; void create_object(); void main() { A a; a.x=10; { A c; c.x=20; } create_object(); } void create_object() { A b; b.x=30; }

2531


Give the code for Handling Mouse Events?

2314


Definition of priority queue was given. We have to implement the priority queue using array of pointers with the priorities given in the range 1..n. The array could be accessed using the variable top. The list corresponding to the array elements contains the items having the priority as the array index. Adding an item would require changing the value of top if it has higher priority than top. Extracting an item would require deleting the first element from the corresponding queue. The following class was given: class PriorityQueue { int *Data[100]; int top; public: void put(int item, int priority); // inserts the item with the given priority. int get(int priority); // extract the element with the given priority. int count(); // returns the total elements in the priority queue. int isEmpty(); // check whether the priority queue is empty or not. }; We had to implement all these class functions.

4896


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

1060


What is 301 redirects in php? When are we used 301 redirects in our projects?

2375