Upload Button Icon Add office photos

VMware Software

Compare button icon Compare button icon Compare

Filter interviews by

VMware Software Interview Questions and Answers

Updated 22 Feb 2025
Popular Designations

233 Interview questions

A Full Stack Developer was asked
Q. Talk about high-level design.
Ans. 

HLD design refers to high-level design, which involves creating an architectural blueprint for a software system.

  • HLD design focuses on the overall structure and components of a system.

  • It includes defining the system's modules, interfaces, and interactions.

  • HLD design helps in understanding the system's functionality and how different components work together.

  • It provides a roadmap for the development process and hel...

View all Full Stack Developer interview questions
A Full Stack Developer was asked
Q. Describe an algorithm for implementing a queue.
Ans. 

A queue is a linear data structure that follows the First In First Out (FIFO) principle for managing data.

  • A queue can be implemented using arrays or linked lists.

  • In an array-based queue, elements are added at the rear and removed from the front.

  • Example: Enqueue operation adds an element, while Dequeue removes the front element.

  • Circular queues can optimize space by reusing empty slots.

  • Common applications include ta...

View all Full Stack Developer interview questions
A Senior Technical Staff Member was asked
Q. Design an online shopping system with the following functional requirements: catalog system, payment, and notifications system.
Ans. 

Design an online shopping system with catalog, payment, and notifications systems.

  • Implement a user-friendly catalog system with search and filter options

  • Integrate secure payment gateways for seamless transactions

  • Set up automated notifications for order confirmations, shipping updates, and promotions

View all Senior Technical Staff Member interview questions
A Senior Technical Staff Member was asked
Q. Design an asynchronous system to send notifications to users.
Ans. 

Design an async system to send notifications to users

  • Use a message queue system like RabbitMQ or Kafka to handle asynchronous communication

  • Implement a notification service that processes and sends notifications based on user preferences

  • Utilize push notifications for mobile devices and email notifications for desktop users

  • Include error handling and retry mechanisms to ensure delivery of notifications

View all Senior Technical Staff Member interview questions
A Senior Technical Staff Member was asked
Q. Given a reference of a node in a connected undirected graph, return a deep copy (clone) of the graph. Each node in the graph contains a value (int) and a list (List[Node]) of its neighbors.
Ans. 

Cloning a graph involves creating a deep copy of the original graph structure.

  • Create a new graph object

  • Iterate through the nodes of the original graph

  • For each node, create a corresponding node in the new graph and add it to the new graph

  • For each edge in the original graph, add a corresponding edge in the new graph

View all Senior Technical Staff Member interview questions
A Senior Technical Staff Member was asked
Q. How does auto-complete work?
Ans. 

Auto complete works by predicting and suggesting possible words or phrases as a user types in a search bar or text field.

  • Auto complete uses algorithms to predict and suggest words based on the input provided by the user.

  • It can be based on previous searches, popular searches, or context of the current search.

  • Auto complete can also offer suggestions based on the first few letters typed by the user.

  • Examples: Google s...

View all Senior Technical Staff Member interview questions

VMware Software HR Interview Questions

13 questions and answers

Q. What is your favorite company?
Q. What is one thing you want to improve?
Q. Are you comfortable working in shifts?
A Senior Technical Staff Member was asked
Q. You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the fut...
Ans. 

Maximize profit by buying and selling stock once; find the best buy-sell pair.

  • Identify the lowest price to buy before a higher price to sell.

  • Use a single pass algorithm to track minimum price and maximum profit.

  • Example: Prices = [7, 1, 5, 3, 6, 4]; Buy at 1, sell at 6 for max profit of 5.

View all Senior Technical Staff Member interview questions
Are these interview questions helpful?
A Senior Software Engineer 2 was asked
Q. Given a maze represented as a 2D array, write a program to find a path from a starting point to an ending point.
Ans. 

Maze problem programs involve finding a path through a maze from start to finish.

  • Use depth-first search or breadth-first search algorithms to solve maze problems.

  • Consider using backtracking to handle dead ends in the maze.

  • Implement a recursive function to explore all possible paths in the maze.

  • Use a stack or queue data structure to keep track of visited cells and potential paths.

View all Senior Software Engineer 2 interview questions
A Senior Software Engineer 2 was asked
Q. Write a program to simulate a snake and ladder game.
Ans. 

Snake ladder program simulates a game where players move based on dice rolls.

  • Create a board with 100 squares representing the snake ladder game.

  • Players take turns rolling a dice and moving their token on the board.

  • If a player lands on a square with a snake head, they move back to the square's tail.

  • If a player lands on a square with a ladder bottom, they move to the ladder's top.

  • The game continues until a player re...

View all Senior Software Engineer 2 interview questions
An Analyst II was asked
Q. Are you comfortable with flexible shift timings around the clock based on volumes?
Ans. 

Yes, flexible shift timings can be implemented around the clock based on volumes.

  • Flexible shift timings can help in efficiently managing workload based on demand.

  • This approach allows for better utilization of resources and ensures coverage at all times.

  • For example, during peak hours or high volume periods, additional staff can be scheduled to handle the workload.

  • Conversely, during low volume periods, fewer staff c...

View all Analyst II interview questions

VMware Software Interview Experiences

145 interviews found

Intern Interview Questions & Answers

user image Harshitha

posted on 23 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Mid to hard Coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Coding question
  • Q2. Data structure and computer network questions
Round 3 - Technical 

(2 Questions)

  • Q1. Java based exception handling question
  • Q2. Situation based questions
Round 4 - Behavioral 

(2 Questions)

  • Q1. Situation based questions
  • Q2. About myself and coding knowledge
Round 5 - HR 

(2 Questions)

  • Q1. About my self and Relocation
  • Q2. About skills and coding knowledge
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Quick sorting is asked in this round
  • Q2. Tree traversal was asked
  • Ans. 

    Tree traversal refers to the process of visiting each node in a tree data structure systematically.

    • There are three primary types of tree traversal: In-order, Pre-order, and Post-order.

    • In-order traversal visits nodes in the order: left child, parent, right child. Example: For a BST, it gives sorted order.

    • Pre-order traversal visits nodes in the order: parent, left child, right child. Example: Useful for creating a copy o...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Merge sort was asked
  • Q2. Binary search was asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Linked list one easy question

Round 2 - Case Study 

Can't disclose NDA it was regarding class diagram

Round 3 - Behavioral 

(2 Questions)

  • Q1. What is your favourite company
  • Q2. How can you explain the path of ip to url
  • Ans. 

    IP address is converted to URL through DNS resolution process involving multiple steps.

    • IP address is obtained from the domain name system (DNS) server when a user enters a URL in a web browser.

    • The DNS server looks up the IP address associated with the URL in its database.

    • The DNS server then returns the IP address to the user's device, allowing it to establish a connection to the server hosting the website.

    • For example, ...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why this company
  • Q2. What is the thing you wanna improve
  • Ans. 

    I want to improve my problem-solving skills by learning new programming languages and technologies.

    • Learn a new programming language like Python or Java

    • Explore new technologies like cloud computing or machine learning

    • Practice solving coding challenges on platforms like LeetCode or HackerRank

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Networking questions
  • Q2. VMware VSphere questions
  • Q3. OS related questions
Round 2 - Behavioral 

(2 Questions)

  • Q1. Scenario based questions
  • Ans. 

    A Technical Support Engineer must troubleshoot effectively to resolve user issues and ensure customer satisfaction.

    • Listen actively to the user's problem to understand the issue clearly.

    • Ask clarifying questions to gather more information, e.g., 'Can you describe what happens when you try to log in?'

    • Use a systematic approach to diagnose the problem, such as checking logs or replicating the issue.

    • Provide clear and concise...

  • Answered by AI
  • Q2. Will you be ok working in shifts
  • Ans. 

    Yes, I am comfortable working in shifts and have prior experience doing so.

    • I have previous experience working in shifts at my previous job

    • I am flexible with my schedule and can easily adapt to different shift timings

    • I understand the importance of providing support round the clock and am willing to work in shifts

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Questions about values
  • Q2. Salary negotiations
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse binary tree.
  • Ans. 

    Reverse a binary tree by swapping left and right child nodes recursively.

    • Start from the root node

    • Swap the left and right child nodes of each node recursively

    • Continue until all nodes have been swapped

  • Answered by AI
  • Q2. DSA problems.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare algos and Data structures mainly.

Business Analyst Interview Questions & Answers

user image Perumal Raj

posted on 10 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Excel questions
  • Q2. Vlookup question
Round 2 - Behavioral 

(2 Questions)

  • Q1. Scenario based questions
  • Ans. 

    As a Business Analyst, I would assess stakeholder needs and propose effective solutions.

    • Identify key stakeholders and their requirements through interviews and surveys.

    • Analyze current processes to identify inefficiencies, e.g., using process mapping.

    • Develop use cases to illustrate how proposed solutions will meet business needs.

    • Facilitate workshops to gather feedback and refine requirements collaboratively.

    • Utilize data...

  • Answered by AI
  • Q2. Conflict management questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple competitive questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Questions in resume
  • Q2. Domain questions
  • Q3. Live scenario related questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. About vmware and company culture
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. VMware related about snapshot process and vmware files etc, networking

Technical Lead Interview Questions & Answers

user image Sanjay Kumar Yadav

posted on 19 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. OOPS hibernate
  • Q2. String Angular javascript node js
Round 2 - HR 

(2 Questions)

  • Q1. Work invironmet
  • Ans. 

    Collaborative, fast-paced, innovative work environment with emphasis on teamwork and continuous learning.

    • Open communication and collaboration among team members

    • Fast-paced and dynamic work environment

    • Emphasis on innovation and creativity

    • Teamwork and support for continuous learning and growth

  • Answered by AI
  • Q2. My thoughts ,what is work process

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be clear with your point or goals
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is Difference between vMotion, FT and HA What is VPXA
  • Ans. 

    vMotion, FT, and HA are VMware technologies for virtual machine mobility, fault tolerance, and high availability. VPXA is a vCenter Server agent.

    • vMotion allows live migration of virtual machines between hosts without downtime

    • FT provides continuous availability for virtual machines by creating a secondary VM that mirrors the primary VM

    • HA automatically restarts virtual machines on different hosts in case of host failure

    • V...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. How do you handle multiple severity-1 tickets
  • Ans. 

    Prioritize and delegate tasks, communicate with stakeholders, and work efficiently under pressure.

    • Prioritize severity-1 tickets based on impact and urgency

    • Delegate tasks to team members based on expertise and workload

    • Communicate with stakeholders about the status and resolution of tickets

    • Work efficiently under pressure to resolve tickets in a timely manner

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about VMware Software?
Ask anonymously on communities.

VMware Software Interview FAQs

How many rounds are there in VMware Software interview?
VMware Software interview process usually has 2-3 rounds. The most common rounds in the VMware Software interview process are Technical, One-on-one Round and Coding Test.
How to prepare for VMware Software 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, Virtualization and Networking.
What are the top questions asked in VMware Software interview?

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

  1. You are given a binary array with N elements: d[0], d[1], ... d[N - 1]. You can...read more
  2. How does HA works? Port number? How many host failure allowed and why? ANS--> M...read more
  3. Docker command to transfer an image from one machine to another without using d...read more
How long is the VMware Software interview process?

The duration of VMware Software interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 101 interview experiences

Difficulty level

Easy 15%
Moderate 81%
Hard 4%

Duration

Less than 2 weeks 57%
2-4 weeks 25%
4-6 weeks 9%
6-8 weeks 8%
More than 8 weeks 2%
View more

Explore Interview Questions and Answers for Top Skills at VMware Software

Interview Questions from Similar Companies

Oracle Interview Questions
3.6
 • 899 Interviews
Zoho Interview Questions
4.2
 • 548 Interviews
Amdocs Interview Questions
3.7
 • 536 Interviews
SAP Interview Questions
4.2
 • 293 Interviews
Adobe Interview Questions
3.8
 • 249 Interviews
Dassault Systemes Interview Questions
3.9
 • 180 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
View all

VMware Software Reviews and Ratings

based on 1.1k reviews

4.4/5

Rating in categories

4.1

Skill development

4.3

Work-life balance

4.4

Salary

3.5

Job security

4.3

Company culture

3.8

Promotions

4.1

Work satisfaction

Explore 1.1k Reviews and Ratings
Technical Support Engineer - VCF

Kalyani,

Bangalore / Bengaluru

7-12 Yrs

₹ 8-13 LPA

VCF SAM Manager

Kalyani,

Bangalore / Bengaluru

8-10 Yrs

Not Disclosed

Manager of Technical Support - Payment Security Division

Bangalore / Bengaluru

8-18 Yrs

Not Disclosed

Explore more jobs
Member Technical Staff
544 salaries
unlock blur

₹17.8 L/yr - ₹42.9 L/yr

Senior Member of Technical Staff
440 salaries
unlock blur

₹40.7 L/yr - ₹73.8 L/yr

Technical Support Engineer
381 salaries
unlock blur

₹10.1 L/yr - ₹18 L/yr

Business Analyst
257 salaries
unlock blur

₹8.6 L/yr - ₹15 L/yr

Technical Staff Member 3
250 salaries
unlock blur

₹30 L/yr - ₹50 L/yr

Explore more salaries
Compare VMware Software with

Oracle

3.6
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare
write
Share an Interview