Answer:
elon musk/ bill gates/ jeff bezos/ henry ford/ tim cook
Explanation:
i googled it/ i added more
Answer:
1. Scripts area is the main working area in Scratch.
2. Sensing blocks are color-coded light blue.
3. Adware is a malware which pops up a window, informing the user that the system is infected and asks for a fee to clean it.
4. Amaya is a WYSIWYG.
I am pretty sure that Audio editing software is software which allows editing and generating of audio data. Audio editing software can be implemented completely or partly as library, as computer application, as Web application or as a loadable kernel module.
please mark brainliest
Answer:
#include <stdio.h>
#define DAYSINWEEK 7
void main()
{
int ndays, year, week, days;
printf("Enter the number of days\n");
scanf("%d", &ndays);
year = ndays / 365;
week =(ndays % 365) / DAYSINWEEK;
days =(ndays % 365) % DAYSINWEEK;
printf ("%d is equivalent to %d years, %d weeks and %d daysn",
ndays, year, week, days);
}
Explanation: