Code for IP Address Comparison and Conversion in C#?
331
Code for Small C++ Class to Transform Any Static Control
into a Hyperlink Control?
206
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.
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.....
267
A string of charaters were given. Find the highest
occurance of a character and display that character.
eg.: INPUT: AEGBCNAVNEETGUPTAEDAGPE
OUTPUT: E
62
program to find the magic square using array
1041
Develop a routine to reflect an object about an arbitrarily
selected plane
301
main()
{
int (*functable[2])(char *format, ...) ={printf, scanf};
int i = 100;
(*functable[0])("%d", i);
(*functable[1])("%d", i);
(*functable[1])("%d", i);
(*functable[0])("%d", &i);
}
a. 100, Runtime error.
b. 100, Random number, Random number, Random number.
c. Compile error
d. 100, Random number
. Remove all the blank spaces between
character.Matrix is of 10* 10.
eg: INPUT
------------------------------------
| N | A | | V | |T
-------------------------------------
| |G | U | |P |
--------------------------------------
|T | | | A | |
------------------------------------
OUTPUT:
------------------------------------
| N | A | V | T | |
-------------------------------------
|G |U | P | | |
--------------------------------------
|T | A | | | |
------------------------------------
57
Teta-Omeg-Big-Oh
Show that f(n) = n2 + 3n3 is ;(n3).
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
24
How to Split Strings with Regex in Managed C++ Applications?
JasperETL how to install and create simple project explain
me clearly fnds iam wtg for ur rply
393
i have two internal tables with customer and credit amount
in one table then customer and debit amount in another
table. now i need output in single list as customer, credit
amount, debit amount and (credit - debit). help me please
83
Common UI for Multiple web applications. Suppose there are
35 websites using same third party controls.These 3rd party
controls are made together that all 35 websites can use
these controls.If we put all 3rd party controls and use its
dll in 35 websites,only class files will be accessable. But
I want to use CSS,images also in all 35 websites. how I can
design the N-tier solution for this project.