Amazon Interview Question for Software Engineer / Developers


Country: United States




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

A method marked synchronized is synchronized on an instance of the containing class. Only one thread at a time can call that method per instance.

e.g. if m1 and m2 are instances of MyClass, and MyClass.syncedMethod() is synchronized, m1.syncedMethod() and m2.syncedMethod() can be called at the same time by two threads, but if a third thread tries to call either, it will be blocked.

A method marked static synchronized is synchronized on the class. Only one thread at a time can call that method, period.

- Barry Fruitman March 17, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Synchronization on static methods will acquire lock on Class object of the enclosing class. This means only one thread can call static synchronized methods regardless of number of instances of that class.

- vinayknl.61 March 26, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

By using synchronized on static blocks, means the whole class instance will be synchronized. If we have called lock inside this synchronized method, then this particular thread will be permanently locked.

- Prashanth April 04, 2013 | 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