how to find turn around time in operating system?
Answers were Sorted based on User's Feedback
Answer / guest
Mean time from submission to completion of process.
| Is This Answer Correct ? | 22 Yes | 3 No |
Answer / hemal patel ( b.c.a )
The Interval from the time of submission of a process to the
time of completion is the TURN AROUND time
| Is This Answer Correct ? | 11 Yes | 1 No |
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
Differentiate between functions getch() and getche().
How do you use a 'Local Block'?
Program to trim a given character from a string.
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
What is the advantage of c?
How to swap 3 numbers without using 4th variable?
If errno contains a nonzero number, is there an error?
what is a function prototype?
How do you define a string?
How can I sort a linked list?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.