There were a lot of questions asked, so I will list the
topic (and add a what is "topic" and know pros/cons).
Extreme programming, what is a transaction, various SDLC
design approaches, what is a namespace, define a good test
case, what is a stored proc, webservice? design patterns?
linker? compiler? access modifiers? stack vs. queue? arrays
vs. linked lists? sorting algorithms? recursion? OOP
principles?
how to compare numbers and dispaly the largest ?
*first thing I wanted to do is to input how many numbers to
be compared
*and then analyzed the largest then display it.
I wish to create a windows application to perform a similar
function as that of the "Search" which is provided to look
for related files and folders in the System..
What steps must i follow??
92
1.write a program in C# to find a given point which is
inside in a circle. Given circle's radius and its center
point?
2.Write a program in C# to generated 20 prime numbers
greater than a given number? (It should be more efficient
for large numbers also)
3. Write a Code to check whether a given point is inside a
circle or not? given Circle's raduis and its center point.
4. using oops concept, design an elevator do not forget
buttons on each floor..
18
how to create crystal reports
give one detail example(i want to view age category report)
please give suitable example in my small knowledge
178
How to make a class not inheritable other than sealed?
50
f i give input like 1,1,4,5,6,1,2,5,4,1,2, then output
should be like : 1-4, 2-2, 4-2, 5-1, 6-1 which means 1
occurs 4 times, 2 occurs 2 times like so.
564
how can include .netframeworl 2.0 in application setup
158
what is .NET framework architecture ??
90
destructor, Dispose, Finalize - How they relate to each other
what is the need of using interface in program
ex:if we have a program like this
interface1()
{
void method1();
void method();
}
class a1 : interface1
{
a1 b = new b();
b.method1();
b.method2();
}
so without using interface also we can achieve this then
wat is the need to use the interface?
plz give me the answer