Upload Button Icon Add office photos

VMware Software

Compare button icon Compare button icon Compare

Filter interviews by

VMware Software Staff Engineer Interview Questions and Answers

Updated 14 Jun 2024

8 Interview questions

A Staff Engineer was asked
Q. How does a debugger work?
Ans. 

A debugger is a tool used by developers to identify and fix errors in software code.

  • Debuggers allow developers to pause the execution of a program and inspect its state at a specific point in time.

  • They provide features like setting breakpoints, stepping through code, and viewing variable values.

  • Common debuggers include GDB for C/C++ and pdb for Python.

  • Debuggers can also be integrated into IDEs like Visual Studio a...

A Staff Engineer was asked
Q. Design MakeMyTrip.
Ans. 

Design makemytrip

  • Create a user-friendly website and mobile app for booking flights, hotels, and holiday packages

  • Include features like price comparison, customer reviews, and loyalty rewards

  • Partner with airlines, hotels, and travel agencies to offer a wide range of options

  • Implement secure payment gateways and customer support services

  • Use data analytics to personalize recommendations and improve user experience

Staff Engineer Interview Questions Asked at Other Companies

Q1. Swap Adjacent Bit Pairs Problem Statement Given an integer N, you ... read more
Q2. Search In Rotated Sorted Array Problem Statement Given a rotated ... read more
Q3. Minimum Jumps Problem Statement Bob and his wife are in the famou ... read more
Q4. Level Order Traversal of Binary Tree Given a Binary Tree of integ ... read more
asked in Nagarro
Q5. How do you write HTML code considering web accessibility for disa ... read more
A Staff Engineer was asked
Q. There are n seats and m people are seated randomly. Write a program to get the minimum number of hops to make them seated together.
Ans. 

Given n seats and m people seated randomly, find the minimum number of hops to seat them together.

  • Find all possible contiguous groups of m seats

  • Calculate the number of hops required to move each group to the center seat of that group

  • Return the minimum number of hops required

A Staff Engineer was asked
Q. Design a file searching functionality for Windows/Mac, including indexing of file names.
Ans. 

Design a file searching functionality with indexing for efficient file name retrieval on Windows and Mac systems.

  • Implement a background indexing service that scans file names and updates an index database.

  • Use a trie or a hash table for fast lookups of file names based on user queries.

  • Provide a user interface with search filters (e.g., file type, date modified) to refine results.

  • Incorporate fuzzy search algorithms ...

A Staff Engineer was asked
Q. 

Minimum Jumps Problem Statement

Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a str...

Ans. 

Calculate minimum jumps required to reach the last shop using trampolines, or return -1 if impossible.

  • Iterate through the array of shops while keeping track of the maximum reachable shop from the current shop.

  • If at any point the maximum reachable shop is less than the current shop, return -1 as it's impossible to reach the last shop.

  • Return the number of jumps made to reach the last shop.

A Staff Engineer was asked
Q. 

Search In Rotated Sorted Array Problem Statement

Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

Note:
1. If 'K' is not present ...
Ans. 

Given a rotated sorted array, find the index of a given integer 'K'.

  • Perform binary search to find the pivot point where the array is rotated.

  • Based on the pivot point, apply binary search on the appropriate half of the array to find 'K'.

  • Handle cases where 'K' is not present in the array by returning -1.

  • Example: For ARR = [12, 15, 18, 2, 4] and K = 2, the index of K is 3.

A Staff Engineer was asked
Q. Design a file searching functionality for Windows and Mac that includes indexing of file names.
Ans. 

Design a file searching functionality with indexing for Windows and Mac.

  • Implement a search algorithm to quickly find files based on user input.

  • Create an index of file names to improve search speed.

  • Support both Windows and Mac operating systems.

  • Utilize system APIs for file access and indexing.

  • Provide a user-friendly interface for searching and browsing files.

  • Consider implementing filters for file type, size, and da...

Are these interview questions helpful?
A Staff Engineer was asked
Q. How would you design a system for MakeMyTrip?
Ans. 

Designing a system for MakeMyTrip

  • Utilize a microservices architecture to handle different functionalities like flight booking, hotel reservations, and holiday packages

  • Implement a robust backend system to handle high traffic and ensure scalability

  • Incorporate a user-friendly interface for easy navigation and booking process

  • Integrate payment gateways for secure transactions

  • Include features like personalized recommend...

VMware Software Staff Engineer Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Leetcode medium questions were asked

I appeared for an interview in Nov 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

In first round, I was not able to complete code but explained the solution. 
Tip : Try to practice coding even if you have 10 years of experience.

  • Q1. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    Given a rotated sorted array, find the index of a given integer 'K'.

    • Perform binary search to find the pivot point where the array is rotated.

    • Based on the pivot point, apply binary search on the appropriate half of the array to find 'K'.

    • Handle cases where 'K' is not present in the array by returning -1.

    • Example: For ARR = [12, 15, 18, 2, 4] and K = 2, the index of K is 3.

  • Answered by AI
  • Q2. 

    Minimum Jumps Problem Statement

    Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a st...

  • Ans. 

    Calculate minimum jumps required to reach the last shop using trampolines, or return -1 if impossible.

    • Iterate through the array of shops while keeping track of the maximum reachable shop from the current shop.

    • If at any point the maximum reachable shop is less than the current shop, return -1 as it's impossible to reach the last shop.

    • Return the number of jumps made to reach the last shop.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Round 2 went very good. They gave a design question in this round.

  • Q1. Design a file searching functionality for Windows and Mac that includes indexing of file names.
  • Ans. 

    Design a file searching functionality with indexing for Windows and Mac.

    • Implement a search algorithm to quickly find files based on user input.

    • Create an index of file names to improve search speed.

    • Support both Windows and Mac operating systems.

    • Utilize system APIs for file access and indexing.

    • Provide a user-friendly interface for searching and browsing files.

    • Consider implementing filters for file type, size, and date mo...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

The third round was also a design round.

  • Q1. How would you design a system for MakeMyTrip?
  • Ans. 

    Designing a system for MakeMyTrip

    • Utilize a microservices architecture to handle different functionalities like flight booking, hotel reservations, and holiday packages

    • Implement a robust backend system to handle high traffic and ensure scalability

    • Incorporate a user-friendly interface for easy navigation and booking process

    • Integrate payment gateways for secure transactions

    • Include features like personalized recommendation...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAVMware Software India Private Limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Nov 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Round1(Coding Round): There are n seats and m people are seated randomly. Write a program to get minimum number of hops between make them seated together.
  • Ans. 

    Given n seats and m people seated randomly, find the minimum number of hops to seat them together.

    • Find all possible contiguous groups of m seats

    • Calculate the number of hops required to move each group to the center seat of that group

    • Return the minimum number of hops required

  • Answered by AI
  • Q2. Round1(Coding Round): Question on binary search
  • Q3. Round2(Design Round): Design file searching functionality for windows/mac (indexing of file names)
  • Ans. 

    Design a file searching functionality with indexing for efficient file name retrieval on Windows and Mac systems.

    • Implement a background indexing service that scans file names and updates an index database.

    • Use a trie or a hash table for fast lookups of file names based on user queries.

    • Provide a user interface with search filters (e.g., file type, date modified) to refine results.

    • Incorporate fuzzy search algorithms to ha...

  • Answered by AI
  • Q4. Round3: Design makemytrip
  • Ans. 

    Design makemytrip

    • Create a user-friendly website and mobile app for booking flights, hotels, and holiday packages

    • Include features like price comparison, customer reviews, and loyalty rewards

    • Partner with airlines, hotels, and travel agencies to offer a wide range of options

    • Implement secure payment gateways and customer support services

    • Use data analytics to personalize recommendations and improve user experience

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My rounds went good. On first round, I was not able to complete code but explained the solution. Rest 2 round went very good. I was not selected though. They said they can consider for Senior MTS (one grade below) but it will not possible for parity reason. So no offer.

Try to practice coding even if you have 10 years of experience.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. How debugger works
  • Ans. 

    A debugger is a tool used by developers to identify and fix errors in software code.

    • Debuggers allow developers to pause the execution of a program and inspect its state at a specific point in time.

    • They provide features like setting breakpoints, stepping through code, and viewing variable values.

    • Common debuggers include GDB for C/C++ and pdb for Python.

    • Debuggers can also be integrated into IDEs like Visual Studio and Ec...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Linux kernel internals
Round 4 - Technical 

(1 Question)

  • Q1. Linux kernel internals

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to have good understanding of Linux kernel.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
boredinlife
·
works at
Mercer
I left in the middle of an interview.
M a self-taught developer. been working really hard, trying to break into tech. Two days ago, I got approached by an hr from this e learning company for an IT role. I was super nervous but also excited because it felt like maybe this is it. The interview was on teams with 9 experienced pros all with degrees and certifications while I had no formal IT background, just self-taught skills. I felt completely out of place. Most of the interviewers were kind and said I could learn on the job. But one person kept throwing back-to-back questions with shady comments after every answer made me feel like I wasn’t good enough. It crushed my confidence About 10 minutes before the interview ended, I panicked. Anxiety took over, so I faked a network issue and left the call. Then I just broke down. I didn’t want to be disrespectful, so I quickly emailed saying I got disconnected. Truth is, I was overwhelmed and felt like a total fraud. I’ve wanted a job in tech for so long.
Got a question about VMware Software?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

I appeared for an interview in May 2017.

Interview Questionnaire 

17 Questions

  • Q1. What is angular js
  • Ans. 

    AngularJS is a JavaScript framework for building dynamic web applications.

    • AngularJS is a client-side MVC framework.

    • It allows developers to build single-page applications.

    • It extends HTML with new attributes and tags.

    • AngularJS uses two-way data binding to automatically synchronize data between the model and the view.

    • It provides dependency injection and modularization features.

    • Some popular examples of websites built with ...

  • Answered by AI
  • Q2. What is directive
  • Ans. 

    A directive is a programming construct that provides instructions to a compiler or interpreter.

    • Directives are used to control the behavior of a program or to provide additional information to the compiler or interpreter.

    • They are typically written as special comments or statements in the code.

    • Examples of directives include #include in C/C++ to include header files, #pragma to control compiler-specific behavior, and #def...

  • Answered by AI
  • Q3. What is factory
  • Ans. 

    A factory is a design pattern that provides an interface for creating objects of a certain class.

    • A factory encapsulates the object creation logic and hides it from the client.

    • It allows the client to create objects without knowing the specific class or implementation details.

    • Factories can be used to create different types of objects based on certain conditions or parameters.

    • They promote loose coupling and flexibility in...

  • Answered by AI
  • Q4. What is services
  • Ans. 

    Services are software components that perform specific tasks or provide functionality to other software applications.

    • Services are self-contained and independent modules that can be accessed by other software components.

    • They can be used to handle business logic, data processing, communication with external systems, etc.

    • Examples of services include web services, microservices, RESTful APIs, and cloud services.

    • Services ca...

  • Answered by AI
  • Q5. What is the difference between factory and service
  • Ans. 

    A factory is responsible for creating and managing objects, while a service is responsible for providing specific functionality or performing tasks.

    • A factory is used to create and initialize objects, often based on certain parameters or configurations.

    • A service is a component that provides specific functionality or performs tasks for other components or systems.

    • Factories are commonly used in object-oriented programming...

  • Answered by AI
  • Q6. Write a program to sort
  • Ans. 

    A program to sort an array of strings.

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort.

    • Compare strings using a comparison function.

    • Implement the sorting algorithm in a function that takes the array as input and modifies it in place.

  • Answered by AI
  • Q7. Write a program to display words separated by space
  • Ans. 

    This program displays words separated by spaces.

    • Use an array of strings to store the words.

    • Iterate through the array and print each word followed by a space.

    • Exclude the space after the last word.

  • Answered by AI
  • Q8. What is provider
  • Ans. 

    A provider is a software component or service that supplies data, functionality, or resources to other software applications.

    • A provider is responsible for delivering data, services, or resources to other software components or applications.

    • Providers can be APIs, libraries, frameworks, or any other software component that offers functionality to other software.

    • Examples of providers include database management systems, c...

  • Answered by AI
  • Q9. What is$watch and $ digest
  • Ans. 

    The $watch and $digest are two important concepts in AngularJS for data binding and updating the view.

    • $watch is a function in AngularJS that allows you to watch for changes in a specific variable or expression.

    • $digest is a function in AngularJS that triggers a process called the digest cycle, which updates the bindings and synchronizes the model and view.

    • The $watch function takes two parameters: the variable or express...

  • Answered by AI
  • Q10. What is ng-repeat
  • Ans. 

    ng-repeat is a directive in AngularJS used to repeat HTML elements for each item in an array.

    • ng-repeat is used to create a loop in AngularJS

    • It is commonly used to display a list of items from an array

    • The directive is placed on an HTML element and uses the 'item in array' syntax

    • It can also be used with filters and sorting

    • Example:

    • {{ item }}
  • Answered by AI
  • Q11. How to get value from ng-getValue=""
  • Ans. 

    ng-getValue is not a standard attribute in Angular. It may be a custom directive or a typo.

    • Check if ng-getValue is a custom directive or attribute in your Angular application

    • Verify if it is being used correctly in the HTML template

    • If it is a typo, correct it to the appropriate attribute or directive

  • Answered by AI
  • Q12. How do you develop CSS without using bootstrap
  • Ans. 

    Developing CSS without using bootstrap involves writing custom CSS code to style web pages.

    • Write CSS code to define styles for HTML elements

    • Use CSS selectors to target specific elements

    • Apply CSS properties to modify the appearance of elements

    • Create media queries for responsive design

    • Implement CSS animations and transitions

    • Optimize CSS code for performance

  • Answered by AI
  • Q13. What is CDN
  • Ans. 

    CDN stands for Content Delivery Network. It is a distributed network of servers that deliver web content to users based on their geographic location.

    • CDN improves website performance by reducing latency and increasing page load speed.

    • CDN caches content in multiple locations, allowing users to access it from a server closest to them.

    • CDN can handle high traffic loads and distribute it across multiple servers.

    • Popular CDN p...

  • Answered by AI
  • Q14. How do you display different color in atable using css for odd even rows
  • Ans. 

    To display different colors in a table using CSS for odd and even rows, you can use the :nth-child() selector.

    • Use the :nth-child(odd) selector to target odd rows and apply a specific color using the background-color property.

    • Use the :nth-child(even) selector to target even rows and apply a different color using the background-color property.

    • For example, you can use CSS code like this: tr:nth-child(odd) { background-c...

  • Answered by AI
  • Q15. How do you develop CSS for different devices
  • Ans. 

    To develop CSS for different devices, use media queries, responsive design principles, and testing on various devices.

    • Use media queries to apply different CSS styles based on the device's screen size

    • Follow responsive design principles to ensure the layout adapts to different devices

    • Test the CSS on various devices to ensure compatibility and responsiveness

  • Answered by AI
  • Q16. What is $ rootscope
  • Ans. 

    The $rootscope is a service in AngularJS that provides a global scope for sharing data between controllers.

    • It is a part of the AngularJS framework.

    • It is used to share data between controllers.

    • It is a singleton object accessible throughout the application.

    • It can be used to broadcast and listen to events.

  • Answered by AI
  • Q17. What is jquery
  • Ans. 

    jQuery is a fast, small, and feature-rich JavaScript library that simplifies HTML document traversal and manipulation, event handling, and animation.

    • jQuery is a JavaScript library.

    • It simplifies HTML document traversal and manipulation.

    • It provides easy event handling and animation.

    • jQuery is fast, small, and feature-rich.

  • Answered by AI

Interview Preparation Tips

Skills: angular JS, Java Programming, css, Javascript

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Ans. 

    Creating test cases for random scenarios ensures software reliability and robustness through diverse input validation.

    • Identify edge cases: Test with minimum and maximum input values, e.g., an empty array vs. a large array.

    • Use random data: Generate random inputs to simulate real-world usage, e.g., random user names or passwords.

    • Test invalid inputs: Ensure the system handles unexpected inputs gracefully, e.g., negative n...

  • Answered by AI
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. 

    Reverse words in a string while handling leading, trailing, and multiple spaces.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words

    • Join the reversed words with a single space in between

    • Handle leading, trailing, and multiple spaces appropriately

  • Answered by AI
  • Q2. 

    Reverse a Stack Using Recursion

    You are given a stack of integers. Your task is to reverse the stack using recursion without using any extra space other than the internal stack space used due to recursion...

  • Ans. 

    Reverse a stack using recursion without using any extra space other than the internal stack space.

    • Use recursion to pop all elements from the original stack and store them in function call stack.

    • Once the stack is empty, push the elements back in reverse order.

    • Base case of recursion should be when the original stack is empty.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. 

    Convert a Binary Tree to its Mirror Tree

    Given a binary tree, convert this binary tree into its mirror tree. A binary tree is a tree in which each parent node has at most two children. The mirror of a bin...

  • Ans. 

    Convert a binary tree to its mirror tree by interchanging left and right children of all non-leaf nodes.

    • Traverse the binary tree in a recursive manner.

    • Swap the left and right children of each non-leaf node.

    • Continue this process until all nodes have been processed.

  • Answered by AI
  • Q2. 

    Remove Nth Node from End of Linked List

    You are given a singly linked list with 'N' nodes, each containing integer data, and an integer 'K'. Your goal is to remove the 'K'th node counting from the end of ...

  • Ans. 

    Remove the Kth node from the end of a singly linked list.

    • Use two pointers approach to find the Kth node from the end.

    • Handle edge cases like removing the head node or removing the last node.

    • Update the pointers to remove the Kth node and reconnect the list.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical Managerial round.

Interview Preparation Tips

Eligibility criteriaAbove 6 months of experience24/7 customer private limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

General Tips: I asked my seniors about the interview process. Their guidelines were very helpful. Always try to bring the interviewer into your comfort zone. Also be confident and expressive while explaining. Explain your thought process while solving. Even though you don't get the solution the thought process might be very important for your selection.
College Name: NIT SURATHKAL

VMware Software Interview FAQs

How many rounds are there in VMware Software Staff Engineer interview?
VMware Software interview process usually has 2-3 rounds. The most common rounds in the VMware Software interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for VMware Software Staff Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at VMware Software. The most common topics and skills that interviewers at VMware Software expect are VMware, Python, Automation, Networking and Virtualization.
What are the top questions asked in VMware Software Staff Engineer interview?

Some of the top questions asked at the VMware Software Staff Engineer interview -

  1. Round1(Coding Round): There are n seats and m people are seated randomly. Write...read more
  2. Round2(Design Round): Design file searching functionality for windows/mac (inde...read more
  3. Round3: Design makemyt...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 892 Interviews
Zoho Interview Questions
4.3
 • 533 Interviews
Amdocs Interview Questions
3.7
 • 529 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce Interview Questions
4.0
 • 233 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
View all
VMware Software Staff Engineer Salary
based on 144 salaries
₹34.4 L/yr - ₹1 Cr/yr
87% more than the average Staff Engineer Salary in India
View more details

VMware Software Staff Engineer Reviews and Ratings

based on 17 reviews

4.0/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

4.2

Salary

3.5

Job security

4.1

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 17 Reviews and Ratings
Staff Engineer

Kalyani,

Bangalore / Bengaluru

15-20 Yrs

Not Disclosed

Explore more jobs
Member Technical Staff
489 salaries
unlock blur

₹13.3 L/yr - ₹45.7 L/yr

Senior Member of Technical Staff
449 salaries
unlock blur

₹27.5 L/yr - ₹80 L/yr

Technical Support Engineer
380 salaries
unlock blur

₹7.5 L/yr - ₹21 L/yr

Technical Staff Member 3
251 salaries
unlock blur

₹20 L/yr - ₹66 L/yr

Business Analyst
229 salaries
unlock blur

₹4.8 L/yr - ₹19 L/yr

Explore more salaries
Compare VMware Software with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare
write
Share an Interview