VMWare Interview | Set 1 (MTS-2)
Last Updated :
23 Jul, 2025
VMWare interview for MTS-2 position.
I Telephonic round
1. Given an array of strings. Find the maximum prefix among all the strings.
Ans: First told about tries. Then went for trivial answer saying compare all the zeroth indices then first indices.
2. Similar to
kadane's algorithm
3. I forgot this Q.
4. Monty Hall puzzle.
Ans: Told the ans as 1/2 after taking 5 mins. Tried to prove using probabilites but could not able to.
I F2F round
1. Given an unsorted array, find the max j-i such that j > i and a[j] > a[i] in O(N).
Ans: Told trivial solution in O(n2). Then used DP but still O(n2). Then told using sorting approach in O(n2).
Could not able to solve even after giving 45 mins of time as it is not trivial answer.
2. Given a rectangular cake and 3 persons have to share it. First person took a rectangular cut. How will you cut such that remaining two people will get the same amount?
Ans: First told horizontal cut where interviewer surprised with the answer and asked for different solution.
Then told cut along a line such that it touches center of mass of both the rectangles.
3. Asusual about current work and why VMWare.
II F2F round
1.
Given k-sorted lists. How will you sort the list in to the new whole array?
Ans: Standard Q. Then asked about time complexity.
2. What if they are not sorted lists.
Ans: Sort the individual arrays first. Then told about heap solution which is not effective. But he is happy with the approaches
3. Lots of questions on C++. As I worked on C++ in current company.
............a. What is the use of friend functions and classes? What are the advantages and disadvantages? Where do we use them?
............b. What is virtual destructor?
............c. Why virtual constructors do not exist ?
Forgot the remaining.
4. He is the same person who interviewed me for telephonic. So asked once again about Monty Hall Puzzle.
Ans: Proved this time with probabilites.
5. http://www.allinterview.com/showanswers/15001.html
Ans: Simple Question
III F2F round
1. About routing protocols.
2. How to counter count to infinity problem?
Ans: Told several approaches and he is expecting poission reverse which I could not tell.
IV F2F round
This is with the manager. This is like rapid fire where interviewer keeps on asking me questions which has either one or two line answers.
1. What are the protocols that you know in transport layer?
2. What is the difference between UDP and TCP?
3. What is the connection end point in TCP ?
4. What is the systemcall which creates a separate connection? (Indirect question about Accept system call)
5. Which system call is used to poll among fds? (select or epoll_wait)
6. Why virtual functions?
7. If you already have a memory, how will use that memory to allocate a new buffer? (placement new)
8. 2-D dynamic array allocation syntax?
9. Arp protocol and why it is used?
10. Why ICMP is used?
11. What are the protocols that you know at MAC layer ?
12. Virtual base classes and why it is used?
Some other questions which I forgot.
After one day HR interview was scheduled.
Typical HR questions. At that time only he told that they are going to give offer. Did not negotiate at all as they offered me decent.
Related Practice Problems
Similar Reads
VMWare Interview Experience | Set 3 I had interview with VMWare. Their process is 1 written test followed by 1 telephonic and 3/4 f2f interviews. Writtent test Very basic questions. They just wanted to see if you can code or not. Round-1 Telephonic- Pair coding Need to write working code on a shared document so that the interviewer ca
2 min read
VMware Interview Preparation Here, you can find all the technical resources (articles, coding problems, subjective problems, video tutorials and interview experiences) that are helpful in preparing for "VMware Interview" !!Company's Wikipedia URL: VMwareCompany's Website URL: www.vmware.comPopular ArticlesProgram for Armstrong
2 min read
VMware Interview Experience | Set 12 (On-Campus) Round 1: Total Time - 90 mins Number of Sections - 4 Platform Used - HirePro Aptitude(Data Interpretation and Number System, Set Theory, Equations, Averages, Percentages, Venn Diagrams, Ratio & Proportions) Computer Science (OS, DBMS, Memory and I/O Management) Computer Programming (C Programmi
1 min read
Adobe Interview | Set 16 (For MTS-1) Recently I got the opportunity to be interviewed for the position of MTS-1 at Adobe. Here is my Interview Experience: Written Round: Part A (50 mins): 45 questions based on logical reasoning, DI, quant and geometry. The questions were easy but the real issue was time in this round. Part B(2 hrs): 13
3 min read
Adobe Interview | Set 15 (For MTS-1) Recently I got the opportunity to be interviewed for the position of MTS-1 at Adobe. Here is my Interview Experience: Written Round: Part A (50 mins): 45 questions based on logical reasoning, DI, quant and geometry. The questions were easy but the real issue was time in this round. Part B(2 hrs): 13
4 min read
Adobe Interview | Set 17 (For MTS-1) Written Round There were two round technical and aptitude Aptitude round consisted of 45 questions (50 minutes) except two passage based on logical reasoning rest were easy, time management was important in this round. 20 Technical questions 13 multiple choice from OS and C++, 7 questions were codin
3 min read