Datasets:

Languages:
English
ArXiv:
License:
cindermond's picture
Upload 334 files
e65b775 verified
raw
history blame
1.74 kB
{"question": "A starvation-free job-scheduling policy guarantees that no job waits indefinitely for service. Which of the following job-scheduling policies is starvation-free?", "options": ["Round-robin", "Priority queuing", "Shortest job first", "Youngest job first"], "answer": "A"}
{"question": "Which of the following sorting algorithms has average-case and worst-case running times of O(n log n)?", "options": ["Bubble sort", "Insertion sort", "Merge sort", "Quicksort"], "answer": "C"}
{"question": "Which of the following considerations applies (apply) to choosing the page size in a paging system?\nI. An advantage of larger pages is that they lead to smaller page tables.\nII. An advantage of smaller pages is that they lead to less waste due to internal fragmentation.\nIII. Normally, the dominant factor in disk access time is not dependent on page length, so longer pages can be used advantageously.", "options": ["I only", "II only", "I and III only", "I, II, and III"], "answer": "D"}
{"question": "In multiprogrammed systems it is advantageous if some programs such as editors and compilers can be shared by several users. Which of the following must be true of multiprogrammed systems in order that a single copy of a program can be shared by several users?\nI. The program is a macro.\nII. The program is recursive.\nIII. The program is reentrant.", "options": ["I only", "II only", "III only", "II and III only"], "answer": "C"}
{"question": "For a connected, undirected graph G = (V, E), which of the following must be true?\nI. \u03a3_{v\u2208V} degree(v) is even.\nII. |E| \u2265 |V| \u2212 1\nIII. G has at least one vertex with degree 1.", "options": ["I only", "II only", "III only", "I and II"], "answer": "D"}