Answer:
The program is as follows:
#include <iostream>
#include <iomanip>
using namespace std;
int main(){
int num1, num2, num3;
cin>>num1>>num2>>num3;
cout << fixed << setprecision(2);
cout<<(num1 + num2 + num3)/3<<" ";
cout<<num1 * num2 * num3<<" ";
return 0;
}
Explanation:
This declares three integer variables
int num1, num2, num3;
This gets input for the three integers
cin>>num1>>num2>>num3;
This is used to set the precision to 2
cout << fixed << setprecision(2);
This prints the average
cout<<(num1 + num2 + num3)/3<<" ";
This prints the product
cout<<num1 * num2 * num3<<" ";
Answer: Multitasking is the ability of the operating system by which a processor is able to process multiple task at the same time.
Cooperative multitasking is non preemptive multitasking where the processor is assigned to a single process and does not preempt until it completes its jobs or moves to a waiting state.
Explanation:
In Multitasking jobs are executed at a faster rate than as many jobs or tasks can be assigned to the processor at the same time.
In cooperative multitasking due to the non preemptive nature a single job could be assigned to the cpu at a time.