ALLInterview.com :: Home Page Forum9.Com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage   interview questions urls   External Links  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
  Categories >> Code Snippets >> Programming Code       
 
  C Code (60)   C++ Code (29)   VC++ Code (1)   Java Code (9)   Dot Net Code (46)
  Visual Basic Code (2)   Programming Code AllOther (5)
 
Suggest New Category 
 


 

  Question  Asked @ Answers Views     select
 
hello friends, given an expression we have to remove the unwanted brackets in that expression. Eg : (a+b) ---> a+b (a+b)*(c)-----> (a+b)*c. Please mail me if you know the logic. My mail id is : saravana6m@gmail.com. Thank you in advance :-) Microsoft  0  2
What is "far" and "near" pointers in "c"...?  0  3
What is the main difference between STRUCTURE and UNION?  1  65
programming in c lanugaue programm will errror error with two header file one as stdio.h and other one is conio.h  0  4
Implement a t9 mobile dictionary. (Give code with explanation ) Yahoo  0  7
I am developing a web application using google map api.I want to update the map inside the div control within update panel. I got other controls updated but map doesn't get updated.I do not not want to update map whenever unnecessary controls are fired at server side.How could it be achieved?  0  7
how to store and retrive a set of values without using an array Maximus  2  210
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 Nagarro  0  16
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. Nagarro  0  16
An array of size 5X5 is given to us. The elements from 1 to 25 are to be inserted in the array, such that starting from a particular position for an element i, the next element i+1can be inserted only at the mentioned positions (u,v), and if these all positions are occupied then it returns giving a count of how many positions have been occupied in the array: (u,v) = (x+/-3 , y) (u,v) = (x , y+/-3) (u,v) = (x+/-2 , y+/-2). Example: if the starting element is 1 with the given positions (1,2), then next element 2 can be placed at any one of the positions marked with *. _ _ _ _ _ 1 _ _ _ * _ _ _ _ _ _ _ * _ _ * _ _ _ _ Nagarro  0  21
How will u find whether a linked list has a loop or not? Microsoft  2  286
Given n nodes. Find the number of different structural binary trees that can be formed using the nodes.  0  12
You are given any character string. Find the number of sets of vowels that come in the order of aeiou in the given string. For eg., let the given string be DIPLOMATIC. The answer returned must be "The number of sets is 2" and "The sets are "IO and AI". Vowels that form a singleton set must be neglected. Try to post the program executable in gcc or g++ or in java.  0  11
How can u say that a given point is in a triangle? 1. with the co-ordinates of the 3 vertices specified. 2. with only the co-ordinates of the top vertex given.  1  83
inner join,outerjoin,trigger,stored procedure explain with code snippets?  1  156
E-Mail New Answers        Answer Selected Questions
 
 
 [1]   2   3   4   5   6   7   8   9   10   11    Next
 
 
 Programming Code interview questions   Programming Code Interview Questions  Scripts_Markup Code interview questions   Scripts_Markup Code Interview Questions
 
 
 
Un-Answered Questions
 
 Question Views Asked at   Select
 
How to Snap the Cursor to a Button? 54  
what is the best algorithm to sort out unique words from a list of more than 10 million words(1 crore+)? we need the best technique in the terms of execution time. 70 TCS
Write a Program in Visual Basic by means of which we can send any data from Visual basic program to any other application running on that machine whether that application supports OLE or not..... 73  
You are given any character string. Find the number of sets of vowels that come in the order of aeiou in the given string. For eg., let the given string be DIPLOMATIC. The answer returned must be "The number of sets is 2" and "The sets are "IO and AI". Vowels that form a singleton set must be neglected. Try to post the program executable in gcc or g++ or in java. 11  
how to display after one month adding today's sysdatedate in jsp? 33  
JasperETL how to install and create simple project explain me clearly fnds iam wtg for ur rply 38  
How to Create Files by Using the FileInfo Class? 108  
Code for Creating a Form Using PlaceHolder Controls? 46  
I am developing a web application using google map api.I want to update the map inside the div control within update panel. I got other controls updated but map doesn't get updated.I do not not want to update map whenever unnecessary controls are fired at server side.How could it be achieved? 7  
Code for Two Classes for Doing Gzip in Memory? 96  
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 16 Nagarro
Implement a t9 mobile dictionary. (Give code with explanation ) 7 Yahoo
How to use Client-side Script to Focus Controls in ASP.NET? 51  
Code for Small C++ Class to Transform Any Static Control into a Hyperlink Control? 39  
Subsets Write an algorithm that prints out all the subsets of 3 elements of a set of n elements. The elements of the set are stored in a list that is the input to the algorithm. (Since it is a set, you may assume all elements in the list are distinct.) 75 Qatar-University
Coding for Synchronizing Cache Access in ASP.NET? 74  
Coding for .NET Delegates? 58  
Code for Communicating over Sockets? 98  
Code for Presenting Parent/Child Data in a Data Grid Row? 102  
Given n nodes. Find the number of different structural binary trees that can be formed using the nodes. 12  
E-Mail New Answers        Answer Selected Questions
 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com