Searching for "B"

Q:

A card is drawn from a pack of 52 cards. The card is drawn at random. What is the probability that it is neither a spade nor a Jack?

A) 9/13 B) 4/13
C) 10/13 D) 8/13
 
Answer & Explanation Answer: A) 9/13

Explanation:
 

There are 13 spade and 3 more jack


Probability of getting spade or a jack:
=13+352=1652=413

 

So probability of getting neither spade nor a jack:
=1−413 = 9/13

Report Error

View Answer Report Error Discuss

Filed Under: Probability

Q:

What is the cause of thrashing? How does the system detect thrashing? Once it detects thrashing, what can the system do to eliminate this problem?

Answer

Thrashing is caused by under allocation of the minimum number of pages required by a process, forcing it to continuously page fault. The system can detect thrashing by evaluating the level of CPU utilization as compared to the level of multiprogramming. It can be eliminated by reducing the level of multiprogramming.


 


What_is_the_cause_of_thrashing_How_does_the_system_detect_thrashing_Once_it_detects_thrashing,_what_can_the_system_do_to_eliminate_this_problem1557490890.jpg image

Report Error

View answer Workspace Report Error Discuss

Q:

A bag contains 12 white and 18 black balls. Two balls are drawn in succession without replacement. What is the probability that first is white and second is black?

A) 6/145 B) 36/145
C) 18/95 D) 12/145
 
Answer & Explanation Answer: B) 36/145

Explanation:
 

The probability that first ball is white:
=C112C130=1230=25


Since, the ball is not replaced; hence the number of balls left in bag is 29.
Hence the probability the second ball is black:
=C118C129=1829


Required probability =(25)×(1829)


=36/145

Report Error

View Answer Report Error Discuss

Q:

What is the difference between Hard and Soft real-time systems?

Answer

A hard real-time system guarantees that critical tasks complete on time. This goal requires that all delays in the system be bounded from the retrieval of the stored data to the time that it takes the operating system to finish any request made of it. A soft real time system where a critical real-time task gets priority over other tasks and retains that priority until it completes. As in hard real time systems kernel delays need to be bounded

Report Error

View answer Workspace Report Error Discuss

Q:

Four dice are thrown simultaneously. Find the probability that all of them show the same face.

A) 1/216 B) 1/36
C) 2/216 D) 4/216
 
Answer & Explanation Answer: A) 1/216

Explanation:

The total number of elementary events associated to the random experiments of throwing four dice simultaneously is:

 

6*6*6*6=64

 

n(S) = 64

 

Let X be the event that all dice show the same face. 

 

X = { (1,1,1,1,), (2,2,2,2), (3,3,3,3), (4,4,4,4), (5,5,5,5), (6,6,6,6)}

 

n(X) = 6

 

Hence required probability = n(X)n(S)=664 =1216

Report Error

View Answer Report Error Discuss

Filed Under: Probability

Q:

While running DOS on a PC, which command would be used to duplicate the entire diskette?

Answer

diskcopy

Report Error

View answer Workspace Report Error Discuss

Q:

What are the benefits of multithreaded programming?

Answer

 



  • Responsiveness

  • Resources sharing

  • Economy

  • Utilization of multiprocessor architectures.

Report Error

View answer Workspace Report Error Discuss

Q:

What is the difference between microkernel and macro kernel?

Answer

Micro-kernal : A micro-kernel is a minimal operating system that performs only the essential functions of an operating system. All other operating system functions are performed by system processes.


Monolithic : A monolithic operating system is one where all operating system code is in a single executable image and all operating system code runs in system mode.

Report Error

View answer Workspace Report Error Discuss