[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Process Management Questions

NA
SHSTTON
391
Solv. Corr.
190
Solv. In. Corr.
581
Attempted
0 M:0 S
Avg. Time

21 / 41

Choose the correct option.

Shortest Job First executes first the job


Awith the least processor needs

Bthat first entered the queue

Cthat has been in the queue for the longest

Dthat last entered the queue

Answer: Option A

Explanation:

Shortest Job First(SJF) scheduling: The basic principle of SJF algorithm is to allocate the CPU to the process with least CPU burst time. The processes are available in the ready queue. CPU is always assigned to the process with least CPU burst time requirements.

Example-

ProcessCPU burst time
P15
P210
P38
P43

Since, the process with smallest CPU burst time is executed first, so these processes would be scheduled in P4 --> P1 --> P3 --> P2 order. SO, average waiting time = (0+3+8+16) / 4 = 6.75 ms.

SJF is an optimal algorithm since this algorithm gives minimum average waiting rime.


Workspace

NA
SHSTTON
154
Solv. Corr.
55
Solv. In. Corr.
209
Attempted
0 M:0 S
Avg. Time

22 / 41

Choose the correct option.

The register context and stacks of a thread are deallocated when the thread


Aterminates

Bblocks

Cunblocks

Dspawns

Answer: Option A

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
128
Solv. Corr.
85
Solv. In. Corr.
213
Attempted
0 M:0 S
Avg. Time

23 / 41

Choose the correct option.

Thread synchronization is required because


Aall threads of a process share the same address space

Ball threads of a process share the same global variables

Call threads of a process can share the same files

Dall of the mentioned

Answer: Option D

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
342
Solv. Corr.
189
Solv. In. Corr.
531
Attempted
0 M:0 S
Avg. Time

24 / 41

Choose the correct option.

Semaphores function is to


Asynchronize critical resources to prevent deadlock

Bsynchronize processes for better CPU utilization

Cused for memory management

Dnone of above

Answer: Option A

Explanation:

Semaphores are synchronization tools.

Any integer(non negative) can act as semaphore. Semaphores are used for counting tasks such as creating a critical region that allows a specified number of threads to enter. For example, if we want at most four threads to be able to enter a section, we could protect it with a semaphore and initialize that semaphore to four.The first four threads will be able to decrement the semaphore and enter the region, but at that point, the semaphore will be zero and any other thread will be blocked from outside the critical region until one of the current threads leaves and signals the semaphore.

Workspace

NA
SHSTTON
244
Solv. Corr.
278
Solv. In. Corr.
522
Attempted
0 M:0 S
Avg. Time

25 / 41

Choose the correct option.

A thread is


Alightweight process where the context switching is low

Blightweight process where the context swithching is high

Cused to speed up paging

Dused in dead locks

Answer: Option A

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
168
Solv. Corr.
29
Solv. In. Corr.
197
Attempted
0 M:0 S
Avg. Time

26 / 41

Choose the correct option.

A process can be


Asingle threaded

Bmultithreaded

Cboth (a) and (b)

DNone of these

Answer: Option C

Explanation:

A process can be both single threaded as well as multithreaded.

Single threaded processes contain the execution of instructions in a single sequence i.e, one command processes at a time.

On the other hand, multithreaded processes allow the execution of multiple parts of a program at the same time. These are lightweight processes available within the process.

Workspace

NA
SHSTTON
277
Solv. Corr.
140
Solv. In. Corr.
417
Attempted
0 M:0 S
Avg. Time

27 / 41

Choose the correct option.

Which operating system reacts in the actual time


ABatch system

BQuick response system

CReal time system

DTime sharing system

Answer: Option C

Explanation:

The correct answer will be Real time system, as they are subjected to response time. They can never miss the deadline as missing the deadline may lead to a disastrous consequence. In other words, the system reads information from sensors and must respond within a fixed amount of time to ensure correct performance. The usefulness of the result produced by realtime system decreases abruptly with respect to how late it takes to complete the task.

Example: Flight controller system 

Workspace

NA
SHSTTON
26
Solv. Corr.
51
Solv. In. Corr.
77
Attempted
0 M:0 S
Avg. Time

28 / 41

Choose the correct option.

For a 25MHz processor , what is the time taken by the instruction which needs 3 clock cycles,


A120 nano secs

B120 micro secs

C75 nano secs

D75 micro secs

Answer: Option A

Explanation:

5 MHz =25*10power(6) cycles/second
i.e.for 3 clock cycles, time = 3/25MHz = 120 nano sec

Workspace

NA
SHSTTON
224
Solv. Corr.
183
Solv. In. Corr.
407
Attempted
0 M:0 S
Avg. Time

29 / 41

Choose the correct option.

Which one of the following is not shared by threads?


Aprogram counter

Bstack

Cboth (a) and (b)

DNone of these

Answer: Option C

Explanation:

A process has code, data, heap and stack segments. Now, the Instruction Pointer (IP) of a thread or threads points to the code segment of the process. The data and heap segments are shared by all the threads. On the other hand, the stack area is an area created by the process just for its thread to use, because stacks can be used in a much faster way than heaps. The stack area of the process is divided among threads, i.e. if there are 3 threads, then the stack area of the process is divided into 3 parts and each is given to the 3 threads. In other words, when we say that each thread has its own stack, that stack is actually a part of the process stack area allocated to each thread. When a thread finishes its execution, the stack of the thread is reclaimed by the process. In fact, not only the stack of a process is divided among threads, but all the set of registers that a thread uses like Stack Pointer, Program Counter and state registers are the registers of the process. So when it comes to sharing, the code, data and heap areas are shared, while the stack area is just divided among threads.

Workspace

NA
SHSTTON
28
Solv. Corr.
51
Solv. In. Corr.
79
Attempted
0 M:0 S
Avg. Time

30 / 41

Choose the correct option.

If one thread opens a file with read privileges then


Aother threads in the another process can also read from that file

Bother threads in the same process can also read from that file

Cany other thread can not read from that file

Dall of the mentioned

Answer: Option B

Explanation:

Here is no explanation for this answer

Workspace

Operating System Process Management Questions and Answers pdf

At Operating System topic Process Management page No: 3 you will find list of 10 practice questions, tips/trick and shortcut to solve questions, solved questions, quiz, and download option to download the whole question along with solution as pdf format for offline practice. You can practice all the listed Operating System Process Management topic questions offline too, by downloading the MCQs practice question of Process Management with detail solution, with formula/Tips & Tricks, with Solved examples and with top-rated users answers, which will give you best answer ascross webs. It is one of the perfect Process Management e-book pdf covering all types of questions in detail. These Operating System test with answers pdf cover all types of question asked in IIFT, XAT, SNAP, GRE, GMAT, NMAT, CMAT, MAT or for IT companies written exam like Wipro, HCL, Infosys, Accenture, Government exams, IBPS Exams etc. There are multiple formats to download your online free Operating System Process Management e-book, like fully solved, unsolved questions with Answers sheet. Even you can customize your ebook format by adjusting the given options in the download section to make it your one of the best Operating System topic-based ebook. It is recommended to bookmark this page Operating System Process Management for your preparation. Most of the students and fresher candidates finding it hard to clear the Operating System section in exams. Here Given Process Management practice questions, quiz, fully solved questions, tips & trick and Mock tests, which include question from each topic will help you to excel in Process Management. Each test has all the basics questions to advanced questions with answer and explanation for your clear understanding, you can download the test result as pdf for further reference.

At Operating System topic Process Management, you will get multiple online quiz difficulty wise, which will have a total of 6 quizzes, categorized as easy, medium, and moderate level. While preparing for any Process Management, take all the list quiz and check your preparation level for that topic. Each quiz have 10 different question, which needs to be answered in 20 min., all the listed quiz here is free, however, you will get only one chance for each quiz to attempt(Take Quiz seriously), so it is always recommended to take one quiz in each section before you start solving Process Management MCQs practice question, and one after solving all the question of the respective level, you can refer back your Process Management quiz result any time or you can download it as pdf for reference.

Operating System Process Management Customize Online Mock Test

This is own type of mock test, where At this Operating System Process Management MCQs mock test section, you will able to attempt only the questions related to Process Management, in that question will be a different level, important, and all the questions will be part of some of the mock tests across Q4interview FREE Mock test. You need to choose the topic as Process Management, and click on Double click to generate your customize mock test. While attempting the mock test you need to choose any of the one options out of given option. It is recommended to go through the direction given along with each question, as these questions will be randomly and so that same direction will not be applicable across the entire test. Once you submit your mock test, the result will be generated for Process Management Customize mock test, where your performance point points will be highlighted. Q4interview analysis every single point which helps you to improve your topic understanding and help you to know your type of mistakes and way to improve Process Management questions, by providing the same type of practice questions from practice exercise. The best part of this Process Management, all these mock tests listed here are free and you can take as Many time, as many you want. When you continue to give Process Management Customize Online Mock Test here regularly, then you will understand how much you have developed your accuracy on a topic, after that you will be able to decide how much attention you need to focus on. Your continued practice will increase your confidence, speed and thinking ability intensely, the Process Management Customize topic on which you will practice more will beneficial for you in future during campus placement.Process Management Mock Tests

Operating System Process Management Quiz Online Test

The details of the Operating System Process Management quiz are as follows. There are 10 questions for you. You have to answer them in 20 minutes. Within 20 minutes you have to see the errors in the sentences given as a question. Four options are also given to you, and you have to choose your opinion. You must be confident in your answer that the choices are difficult. Therefore, below we provide you with some information about Operating System Process Management that you see and keep them in mind while answering questions.

Operating System Process Management MCQs Practice Questions with Answer

On this Process Management section of page you will find the easiest quickest ways to solve a question, formulas, shortcuts and tips and tricks to solve various easiest methods to solve Process Management Question Quickly. It contains all the Operating System topic Process Management questions which are common in any of the preliminary exams of any company. The solution is provided along with the questions. The practice of these questions is a must as they are easy as well as scoring and asked in all the exams They will confirm the selection if all the questions attempted wisely with little practice. It is recommanded to Take Mock test based on Operating System topic and Process Management topic based quiz.

Operating System Process Management solved examples question

Clarity of concepts is a must if you want to master the skill of solving Operating System problems. This page contains sample Operating System Process Management questions and answers for freshers and competitive exams. Process Management Questions with the detailed description, the explanation will help you to master the topic. Here solved examples with detailed answer description, explanations are given and it would be easy to understand. How to solve qProcess ManagementOperating System? Here are some examples solved with the Common Rules/tricks/tips of Operating System. Enhance your chance to score maximum marks in Operating System sections through. Error Spotting Grammar Questions Online Test for Free. Fully solved Sentence Formation MCQs questions with detailed answer description. Operating System is an important topic for any exams but most aspirants find it difficult. You need to learn various tricks tips, rules, etc to solve quickly. At this page, you will find frequently asked Process Management questions or problems with solutions, shortcuts, formulas for all-important competitive exams like IT companies exams, interviews. It is always a best practice to go through the example and understand the types of question and way to solve it, so let's do some examples to calculate efficiency, read through all the given here solved examples. You can post your solution, tips, trick and shortcut if you have any in respect to questions.

You can get here fully solved Process Management examples with a detailed answer and description. You can solve Process Management problems with solutions, the questions by companies wise by filtering the questions, additionally, you can check what type of questions are being asked in IT companies Written Round from Process Management. Process Management became one of the most important sections in the entire competitive exams, Companies Campus, and entrance online test. Go through Process Management Examples, Process Management sample questions. You can Evaluate your level of preparation in Process Management by Taking the Q4Interivew Process Management Online Mock Test based on most important questions. All the Process Management practice questions given here along with answers and explanations are absolutely free, you can take any number of time any mock Test.

Why Operating System Process Management?

In this practice section, you can practice Operating System Questions based on "Process Management" and improve your skills in order to face the interview, competitive examination, IT companies Written exam, and various other entrance tests (CAT, GATE, GRE, MAT, Bank Exam, Railway Exam etc.) with full confidence.

Where can I get Operating System Process Management questions and answers with explanation?

Q4Interview provides you lots of fully solved Operating System (Process Management) questions and answers with Explanation. Solved examples with detailed answer description, explanation are given and it would be easy to understand. You can download Operating System Process Management quiz questions with answers as PDF files and eBooks.

Where can I get Operating System Process Management Interview Questions and Answers (objective type, multiple-choice, quiz, solved examples)?

Here you can find objective type Operating System Process Management questions and answers for interview and entrance examination. Multiple choice and true or false type questions are also provided.