The Q&A Community for Students

MindStudy, question and answer site designed to help students, to help each other:
To ask, to learn, to share, to grow.

Ask Questions

Get the right answers. Fast

Answer Questions

Submit answers for community.

Be Somebody's Hero

Pat yourself on the back. You deserve it.

All Questions

542 questions

1162 views

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 ...... ");

Super Admin
added 3 years ago
1153 views

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();

Super Admin
added 3 years ago
1178 views

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:”);

Super Admin
added 3 years ago
1082 views

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);

Super Admin
added 3 years ago
1139 views

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++)

Super Admin
added 3 years ago
1278 views

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.

Super Admin
added 3 years ago
1684 views

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:

Super Admin
added 3 years ago
1158 views

Short Notes : UML

UML is a standard language for specifying, visualizing, constructing, and documenting the artifacts of software systems.

Super Admin
added 3 years ago
1120 views

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.

Super Admin
added 3 years ago