Computer works on the Basis of multitasking.
Answer:An operating system, or "OS," is software that communicates with the hardware and allows other programs to run. It is comprised of system software, or the fundamental files your computer needs to boot up and function.
Explanation:
Answer:
int a[10] = {10,20,30,40,50,60,70,80,90,100};
Explanation:
In the above statement, we declare the integer data type array variable that is 'a' then, pass its index value that is 10 which means it contains only 10 values and initialize the components of the array variable that is starting with 10 and end at 100 in the difference of 10. So, the following declaration is correct according to the statement.
Answer:
Following is given the solution of your question as required.
All the necessary descriptions are given in form of comments,
Sample output are also shown.
I hope it will help you!
Explanation: