Answer:A database is an organized collection of structured information, or data, typically stored electronically in a computer system. A database is usually controlled by a database management system (DBMS). ... The data can then be easily accessed, managed, modified, updated, controlled, and organized.
Explanation:A database could be grades that students get at school and to manage it we can use a spreadsheet program like excel
Answer:
Explanation:
Disk space is a limited resource on the spooling partition and once it is filled the will cause a deadlock. Every single block that comes into the spooling partition claims a resource, and the one behind that wants resources as well, and so on. Since the spooling space is limited and half of the jobs arrive and fill up space then no more blocks can be stored, causing a deadlock. This can be prevented allowing one job to finish and releasing the space for the next job.
Answer:
1 You can learn to draw
2 You can learn to code
3 You can learn to make a thumbnail
4 You can learn how to follow yourself
5 You can learn to remix your own projects
6 You can learn how to make a featured project you've never shared
Explanation:
Answer:
Open your image in Photoshop.
Go to the Image Size dialog, check resample, and select "Preserve Details" in the corresponding dropdown menu.
Make sure the Resolution is set to 300 Pixels/Inch.
Set Width and Height to inches and adjust to enlarge your image.
Answer:
Following are the code in c language
#include <stdio.h> // header file
int main() // main function
{
int n1,i;
float avg,x,s=0; // variable declaration
printf("\nEnter How many Number terms you want:");
scanf("%d",&n1); // input terms by user
for(i=0;i<n1;++i)
{
scanf("%f",&x); // user input
s= s +x; //calculate sum
}
avg = s/n1;// calculate average of n number
printf("\nThe average of n number is:");
printf("%f",avg); // display average
return 0;
}
Output
Enter How many Number terms you want:3
3
4
3
The average of n number is:3.333333