Answer:
Software program.
Explanation:
Unlike hardware which describes physical entities of a computer, a software program or simply a program (or even simply, a software) is a set of instructions or data that commands the computer on specific tasks to be performed and how they (the tasks) are performed. Examples of a software are internet browser applications such as Google Chrome, Internet Explorer, and Mozilla Firefox and graphics applications such as Photoshop and Corel Draw.
Hope this helps!
I believe it’s b. Link text
Answer:
// here is code in c.
#include <stdio.h>
// main function
int main()
{
// variable to store year
int year;
printf("enter year:");
// read the year
scanf("%d",&year);
// if year>=2101
if(year>=2101)
{
printf("Distant future");
}
//if year in 2001-2100
else if(year>=2001&&year<=2100)
{
printf("21st century");
}
//if year in 19011-2000
else if(year>=1901&&year<=2000)
{
printf("20th century");
}
// if year<=1900
else if(year<=1900)
{
printf("Long ago");
}
return 0;
}
Explanation:
Read the year from user.After this, check if year is greater or equal to 2101 then print "Distant future".If year is in between 2001-2100 then print "21st century".If year is in between 1901-2000 then print "20th century".Else if year is less or equal to 1900 then print "Long ago".
Output:
enter year:2018
21st century
The answer is you are responsible for paying all the
interest that accumulates on your loan. <span>For unsubsidized loans, the interest
accumulates while you are in school, and 6 months after you graduate (or drop
out) you will start paying on your loans. </span>
Native Code Or Machine Language