Dot Net Code (114)
Visual Basic Code (11)
Programming Code AllOther (62) write a program that prompt the user to enter his height and weight,then calculate the body mass index and show the algorithm used
4817write a program that calculate the volume of cylinder after user enters radius and height and show the algorithm used
1 10479write a program to calculate the radius for a quadratic equation use modular programming(function abitraction)hint use quadratic function
1 4758write a program to convert temperature from fa height into celcius and vise versa,use modular programming
2984write a program to calculate the amount of investment after a period n years if the principal investors was p and interest is calculated using compound interest,formular=a=p(1+r)^n
2818solve the problem in the programming language C++"if a five digit number is input through the keyboard.Write a program to calculate the sum of its digits(hint: use the modulus operator)
3359write 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
3074which function is used to clear the buffer stream on gcc?
for example:
I wrote following code on gcc
#include
Using C# Write a program that performs the following. The user inputs a number and then enters a series of numbers from 1 to that number. Your program should determine which number (or numbers) is missing or duplicated in the series, if any. For example, if the user entered 5 as the initial number and then entered the following sequences, the results should be as shown. Input Sequence Output ---------------------- --------------- 1 2 3 4 5 Nothing bad However, if 7 were the high number, the user would see the results on the right for the following number entries: Input Sequence Output ---------------------- --------------- 1 3 2 4 5 Missing 6 Missing 7 And if 10 were the high number and the user entered the numbers shown on the left, note the list of missing and duplicate numbers: Input Sequence Output ---------------------- --------------- 1 2 4 7 4 4 5 10 8 2 6 Duplicate 2 ( 2 times) Missing 3 Duplicate 4 ( 3 times ) Missing 9 The program should check the high number that the user inputs to ensure that it does not exceed the size of any array you might be using for storage.
4195respected sir, i did my MCA in 2013 when i am going to attend to an interview i was asked about my project how will i explain my project could please help me in this and my project title is "Social Networking Site For Social Responsibility"
1 5049
Ask the user to input three positive integers M, N and q. Make the 2 dimensional array of integers with size MxN, where all the elements of I (I = 1,…,M) line will be members of geometrical progression with first element equal to the number of line (I) and denominator q.
how to track links visited in google using iframes
How to use Client-side Script to Focus Controls in ASP.NET?
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
What output does the following code generate? Why? What output does it generate if you make A::Foo() a pure virtual function? class A { A() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; class B : public A { B() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; int main(int, char**) { A objectA; B objectB; return 0; }
Code for Two Classes for Doing Gzip in Memory?
How we work on N tire architecture in asp.net Please give me Examle...
Can we run Applet in Web browser with security policy files
Do you think about CMM(Capability Maturity Model) process?
How can you relate the function with the structure? Explain with an appropriate example.
How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?
Write Down Steps Using SAX Parser
I have a file which contains so many lines and variable number of lines are treated as a record. For example *first ooooo xxxxx ttttt mmmm vvvvvvv *end uuu bbbb *first kkkkvvvvvv nnnn mmmmm kkkkk fffff gggg ffff kkkk lllll *end. Here the lines from *first to *end are treated as a record. The number of lines between *first and *end is not same for all the records. Suppose there are 100 records (or number of records are not predefined)like the format given in the above example. Now the entire file needs to split into two files, first having 40 and remaining in the second file. Can we split using sort utility? If possible then what is the sort card?
can you please write a program for deadlock that can detect deadlock and to prevent deadlock.
What is GUID anyway?