All Questions

537 questions and answers

1009 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
1054 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
1169 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
1583 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
1070 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
1004 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
1168 views

Difference between JPEG and Bitmap

The full form JPEG is Joint Photographic Experts Group. And there are two extensions used to store image in this format, these are .jpg and .jpeg .

Super Admin
added 3 years ago
1104 views

Scaling

It is used to alter or change the size of objects. The change is done using scaling factors. There are two scaling factors, i.e. Sx in x direction Sy in y-direction. If the original position is x and y. Scaling factors are Sx and Sy then the value of coordinates after scaling will be x1 and y1.

Super Admin
added 3 years ago
1085 views

Translation

It is the straight line movement of an object from one position to another is called Translation. Here the object is positioned from one coordinate location to another.

Super Admin
added 3 years ago