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 is the meaning of version in XML?

701

What are the basic rules while writing XML?

588

What is well formed XML document?

673

What is XSL?

646

What is XPath in XML?

684

What are nested elements in XML?

641

What is CDATA?

672

What is an XML Schema?

672

What are the features of XML?

660

What are the advantages of XML DOM Document?

655

Who is responsible for XML?

653

Why XML has been used for development?

622

Can we have empty XML tags?

793

What is a StAX Parser?

648

What is SGML?

659


Un-Answered Questions { Code Snippets }

how to create Expandable and Collapsible Menus

3304


write a c program which takes 20 numbers in an array as input from user and rearrange them in two different array defining even or odd

3177


What are the disadvantages of XML?

607


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

3287


could you please send the program code for multiplying sparse matrix in c????

3632


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

1528


How can I create connection two blue-tooth mobile in j2me. please urgent

2437


how to convert between arrays and strings

2887


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

1393


program to bring a window to the front

2084


I have this code in leftmenu.ascx page..now on leftmenu.ascx.cs page i want to access id values. but i dont want to check manually like Accommodation,Arts etc.. In cs file my code is like string str[]; //this array contains some values say 10 strings for(i=0;i<100;i++) { if(str[i]==id id.visible=true } i.e.i want to travel for each element of str and each value of id.if they match then id.visible=true how to do?

4440


write a code to generate pseudorandom numbes

2420


How to find No of classes,Packages,No of Methods per Classes and Depth of Inheritance for selecting source code in windows form application using c# .net? (Source code is input Program. It may be Java or .net) Please help me..) Thanks..)

2756


can everyone explain this code Private Sub DrawRect(rectSource As RECT, lngColour As Long) Line (rectSource.Left, rectSource.Top)-(rectSource.Left, rectSource.Bottom), lngColour Line (rectSource.Left, rectSource.Top)- (rectSource.Right, rectSource.Top), lngColour Line (rectSource.Right, rectSource.Bottom)- (rectSource.Right, rectSource.Top), lngColour Line (rectSource.Right, rectSource.Bottom)- (rectSource.Left, rectSource.Bottom), lngColour End Sub

2707


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.

5028