Searching for "_____"

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

Q:

What is mutex?

Answer

Mutex is a program object that allows multiple program threads to share the same resource, such as file access, but not simultaneously. When a program is started a mutex is created woth a unique name. After this stage, any thread that needs the resource must lock the mutex from other threads while it is using the resource. the mutex is set to unlock when the data is no longer needed or the routine is finished.

Report Error

View answer Workspace Report Error Discuss