Answer:
prefix comes first
Explanation:
pre means before, and post means after.
Answer:
it is important for software to be compatible with your operating system so that you can use the software you acquired. The complications you may encounter if your software is not compatible with your operating system would be error codes, money wasted, and/or possible system changed that you do not want to change since it wouldn't be appropriate for your operating system.
Explanation:
Incompatible software is not something you should use with your operating system.
Answer:
Resources
A resource is anything required by a process.
Anything - os as resource manager.
Process - owns the resource.
Required - no resource, no progress; adaptive processes.
Resources - sharable, serially reusable, and consumable.
Explanation:
Resource durability determines how a resource reacts to being used. A reusable resource remains after being used. Disks, networks, CPUs are reusable resources.Oct 9, 201
Answer:
You can send f e e d b a c k to g o o g l e fe e d back
Explanation:
i Hope this helps
Answer:
sum = 0;for(j = 0; j < 7; j++)sum = sum + sales[5][j];
Explanation:
here we evaluate condition in parenthesis
sum = 0 here variable sum is initialised with 0 value
now for loop executes the condition in parenthesis which is (j = 0; j < 7; j++)
- j =0 is 1st condition which will be executed one time , so j = 0 means index value for loop started is with 0 as you know arrays have index
- j<7 2nd condition for executing the code block which defines loop will go on till the value of j is less than 7 ,as we know the columns in question is 7(this condition must be true)
- j++ 3rd condition means after each iteration value of j will increase +1
- here this condition is true (j = 0; j < 7; j++) till 7th column
- sum = sum + sales[5][j] (sales [row][column] it indicates every 5th row element of each column)