Searching for "%"

Q:

What are the different job scheduling in operating systems?

Answer

Scheduling is the activity of the deciding when process will receive the resources they request.


FCS ---> FCSFS stands for First Come First Served. In FCFS the job that has been waiting the longest is served next.


Round Robin Scheduling--->Round Robin scheduling is a scheduling method where each process gets a small quantity of time to run and then it is preempted and the next process gets to run. This is called time-sharing and gives the effect of all the processes running at the same time


Shortest Job First ---> The Shortest job First scheduling algorithm is a nonpreemptive scheduling algorithm that chooses the job that will execute the shortest amount of time.


Priority Scheduling--->Priority scheduling is a scheduling method where at all times the highest priority process is assigned the resource.

Report Error

View answer Workspace Report Error Discuss

Q:

What is NETBIOS and NETBEUI

Answer

NETBIOS is a programming interface that allows I/O requests to be sent to and received from a remote computer and it hides the networking hardware from applications.


NETBEUI is NetBIOS extended user interface. A transport protocol designed by microsoft and IBM for the use on small subnets.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

Q:

Find the probability of selecting 2 woman when four persons are choosen at random from a group of 3 men, 2 woman and 4 children.

A) 1/5 B) 1/7
C) 1/6 D) 1/9
 
Answer & Explanation Answer: C) 1/6

Explanation:

Out of 9 persons,4 can be choosen in 9C4 ways =126.

 

Favourable events for given condition = 2C2*7C2= 21.

 

So,required probability = 21/126 =1/6.

Report Error

View Answer Report Error Discuss

Filed Under: Probability

Q:

A word consists of 9 letters; 5 consonants and 4 vowels.Three letters are choosen at random. What is the probability that more than one vowel will be selected ?

A) 13/42 B) 17/42
C) 5/42 D) 3/14
 
Answer & Explanation Answer: B) 17/42

Explanation:

3 letters can be choosen out of 9 letters in 9C3 ways.

 

More than one vowels ( 2 vowels + 1 consonant  or  3 vowels ) can be choosen in (4C2*5C1)+4C3 ways

 

Hence,required probability = 4C2*5C1+4C39C3 = 17/42

Report Error

View Answer Report Error Discuss

Filed Under: Probability

Q:

Find the probability of selecting exactly 2 children when four persons are choosen at random from a group of 3 men, 2 woman and 4 children.

A) 9/29 B) 10/21
C) 12/21 D) 14/19
 
Answer & Explanation Answer: B) 10/21

Explanation:

4 persons can be selected from 9 in 9C4 ways =126

 

Fvaourable events =4C2*5C2 =60

 

So,required probability = 60/126 = 10/21

Report Error

View Answer Report Error Discuss

Filed Under: Probability

Q:

What is RAID?

Answer

A method for providing fault tolerance by using multiple hard disk drives

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

Q:

What are operating system services?

Answer



  • Program execution

  • I/O operations

  • File system manipulation

  • Communication

  • Error detection

  • Resource allocation

  • Accounting

  • Protection


Report Error

View answer Workspace Report Error Discuss

Q:

What is Marshalling?

Answer

The process of packaging and sending interface method parameters across thread or process boundaries.

Report Error

View answer Workspace Report Error Discuss