Open In App

VMWare Interview Experience for Senior MTS

Last Updated : 10 Dec, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

I got a chance to give the VMWare interview during Oct 2020. It was a totally different and mind-boggling experience. It was a Senior Developer Profile for which I had applied. I had applied through the Company’s website, career portal. Everything was very smooth. Recruiters were very friendly. I was informed that it would be a 3-hour back to back interviews,1 hour each on a different area of expertise. My interview lasted for about 3 hours 45 minutes.

Following is the list of questions I was asked, each round had a different interviewer :

I was given a Hackerrank login and a screen was shared for checking my coding skills.

First Round (More on Core Java):

  1. Given a list of words, arrange it in a way as if they are present in the dictionary in an alphabetic fashion and provide me the last second word present in the dictionary from these words. cat, bat, rat, king, queen, wise, long, zoom, VMware
  2. Design a parking lot for an IT park. What APIs will you expose? What design patterns will you use?
  3. Given a list of strings in a class. Define a getter in such a way that the clients of the class can’t modify the array, but you can modify it within the class. If we change it to an array of Strings then how would you do it?
  4. Which sorting algorithm will you apply in the above question and why? How will you iterate it compare without using API sort methods?
  5. What is a deep copy and what is a shallow copy? When and where is it used?

Second Round 

  1. What are microservices and why do we need them? What is the use case for a Microservice? What are the pros and cons of using them? When would you scale vertically and when would you scale horizontally?
  2. What is scalability and why is it required? What is the difference between High Availability and scalability?
  3. If a service, say a microservice, is deployed in 3 different nodes of a cluster, will they communicate with each other? If yes then how? Will it be a good design that they communicate, as it is the same service? Will, the DB copy be made/how many instances of DB will be there..
  4. What is concurrency ? What is the Use case? How do threads communicate? What are their different modes of running?
  5. What is synchronization? How is it achieved, with examples..
  6. How do we create a Thread…extends Thread, implements Runnable? Which is better and why?
  7. What is a Blocking Queue? How does it block a thread if full/empty?
  8. What are the concurrent collections? How do they achieve concurrency?
  9. Internal Working of Concurrent Hash Map? What is a Concurrent Modification Exception?
  10. What is the Streams API? What is it used for?
  11. Given a list of employees. I need to search them according to their first name/last name/age etc. But my search should be contained. Which data structures should be used? And how will I search?

Third Round

  1. Reverse a Linked List
  2. Design a lock where there are two functions acquire() and release() and two threads have to use it. How will you write code for it?
  3. Design a URL shortening algorithm. I/P is a long URL with parameters of a User and you have to provide a short URL to the user in his email. When the short Url is clicked, it opens up the long URL with the respective parameters. How will you design this?
  4. What is Dependency Injection?
  5. What is Liskov Substitution Principle?
  6. What is MVC pattern? Why do we need it ?

Overall, it was a great experience.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads