MindStudy, question and answer site designed to help students, to help each other:
To ask, to learn, to share, to grow.
Get the right answers. Fast
Submit answers for community.
Pat yourself on the back. You deserve it.
542 questions
Implement Bubble Sort using C.
#include<stdio.h> #include<conio.h> void main() { int a[100],i,n,j,temp; clrscr(); printf("\n\n\n\t\t ********** BUBBLE SORT **********\n\n\n"); printf("Enter the no of digit to be sorted ...... ");
Write a C program to find the value of Sine(X).
#include<stdio.h> #include<conio.h> #include<math.h> int sine(int); int fact(int); void main() { int x; float result; clrscr();
Write a C program to calculate the following sum:
Sum = 1-x^2/2!+x^4/4!-x^6/6!+x^8/8!-x^10/10!
#include<stdio.h> #include<conio.h> #include<math.h> void main() { int i,n=10,x; long int fact=1; float sum=1; printf(“Enter the x value:”);
Write a C program to find the roots of a quadratic equation.
#include<stdio.h> #include<conio.h> #include<math.h> void main() { float a,b,c,d,r1,r2,imp,rp; clrscr(); printf(“Enter a,b,c:”); scanf(“%f%f%f”,&a,&b,&c);
Write a C program to print the following pattern output.
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
#include<stdio.h> #include<conio.h> main() { int i,j,n; printf("\n enter how many lines"); scanf("%d",&n); for(i=1;i<=n;i++)
The total distance travelled by vehicle in 't' seconds is given by distance = ut+1/2at^2 where 'u' and 'a' are the initial velocity (m/sec.) and acceleration (m/sec2).
Write C program to find the distance travelled at regular intervals of time given the values 'u' and 'a'.
The program should provide the flexibility to the user to select his own time intervals and repeat the calculations for different values of 'u' and 'a'.
#include<stdio.h> main() { int a,u,t,t1,t2,i; float s; clrscr(); printf("ENTER THE VALUES OF a,u,t,t1,t2:");
What is the Modularity of a Software System ?
A modular design is an effective decomposition of a problem. It is a basic characteristic of any good design solution.
Distinguish between Decision table versus decision tree
Even though both decision tables and decision trees can be used to represent complex program logic, they can be distinguishable on the following three considerations:
Short Notes : UML
UML is a standard language for specifying, visualizing, constructing, and documenting the artifacts of software systems.
What do you mean by software crisis & its solution.
Software Crisis is a term used in the early days of computer science for difficulty of writing useful and efficient computer programs in the required time.
Copyright © 2025 MindStudy
A product by Shunya Intelliware Solution
(Registered under MSME Uddyam)