VMWare Inc Interview Question for Software Engineer / Developers






Comment hidden because of low score. Click to expand.
0
of 0 vote

A mutex is a binary semaphore. Semaphores in general are counting semaphores. You can have n threads in a critical section using a semaphore but only one using a mutex.

- XYZ October 29, 2008 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

A little change to earlier comment.. a semephore allows multiple threads to share a resourse...

- JackMaster January 13, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

A little change to earlier comment.. a semephore allows multiple threads to share a resourse...

- JackMaster January 13, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Mutex is a semaphore with count one. Mutex serialises the access to a reentrant code. While semaphore restricts the number of simultaneous users to a shared resource.

- sushbis July 15, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Mutex is a semaphore with count one. Mutex serialises the access to a reentrant code. While semaphore restricts the number of simultaneous users to a shared resource.

- sushbis July 15, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Mutex is a semaphore with count one. Mutex serialises the access to a reentrant code. While semaphore restricts the number of simultaneous users to a shared resource.

- sushbis July 15, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Mutex is a semaphore with count one. Mutex serialises the access to a reentrant code. While semaphore restricts the number of simultaneous users to a shared resource.

- sushbis July 15, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Actually, Mutex and Binary semaphores are different.

The main difference is that, in case of mutex "The thread that locks the mutex should only release the mutex".

- Anonymous November 01, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Actually, Mutex and Binary semaphores are different.

The main difference is that, in case of mutex "The thread that locks the mutex should only release the mutex".

- Anonymous November 01, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

A far as linux is concerned , we can not use mutex to synchronize the process.We have to have semaphore.

- Yuvaraj December 30, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

A far as linux is concerned , we can not use mutex to synchronize the process.We have to have semaphore.

- Yuvaraj December 30, 2010 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More