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

How do you write a program which produces its own source code as its output?

7 18584

how to check whether a linked list is circular.

Microsoft,

11 63267

Write out a function that prints out all the permutations of a string. For example, abc would give you abc, acb, bac, bca, cab, cba. You can assume that all the characters will be unique.

IITR, Microsoft, Nike,

5 22655

Write a prog to accept a given string in any order and flash error if any of the character is different. For example : If abc is the input then abc, bca, cba, cab bac are acceptable, but aac or bcd are unacceptable.

Amazon, Microsoft,

5 15096

How to add checkbox to datagrid?

5 16394

Program to find the largest sum of contiguous integers in the array. O(n)

11 39667

how to Scroll a DIV content

SoftSquare,

2524

how to create Expandable and Collapsible Menus

3180

how to determine which Mouse Button was pressed

1 3141

create a slide show

Genpact,

1 4570

code to detect versions of different browsers like internet explorer, netscape, mozilla, opera etc

HCL,

2104

code to images to rollover

2313

code to create a new window

2135

write a code that user can choose/alter Body Text Size

1974

code to Hide and Show form controls

2235


Un-Answered Questions { Code Snippets }

Cluster head selection in Wireless Sensor Network using C programming language.

3674


Write a program to model an exploding firecracker in the xy plane using a particle system

4092


write a function that reverse the elements of an array in place.The function must accept only one pointer value and return void.

4514


how to transform XML Data into HTML

2307


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

838


how to track links visited in google using iframes

2671


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

3399


program to bring a window to the front

1969


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.

4893


What is XML Parser?

662


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

985


write a simple calculator c program to perform addition, subtraction, mul and div.

3675


Code for Presenting Parent/Child Data in a Data Grid Row?

2493


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

1425


How to add flash or *.gif file in edit panel in java?

2240