Upload Button Icon Add office photos

Filter interviews by

VMware Software Interview Questions, Process, and Tips

Updated 22 Feb 2025

Top VMware Software Interview Questions and Answers

View all 247 questions

VMware Software Interview Experiences

Popular Designations

145 interviews found

I was interviewed before Mar 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Online interview round with questions based on DSA and Devops.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Q2. What are Terraform modules?
  • Q3. How would you debug issues with Apache and Nginx?
  • Q4. How would you prevent a DDoS attack?
Round 2 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

They have a zoom video call. And it's really lengthy.

  • Q1. How do you block specific IPs on your EC2 instance in AWS?
  • Q2. What is load average in Linux?
  • Q3. What is the difference between an inode number and a file descriptor?
  • Q4. What happens to the load balancer when an instance in AWS is deregistered?
Round 3 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round with questions around Devops

  • Q1. How can you copy Docker images from one host to another without using a repository?
  • Q2. How do you debug a website template that is very slow?
  • Q3. What is a use case that would require the setup of distributed Jenkins nodes?
  • Q4. Can you write an Ansible playbook to install Apache?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAVMware Software India Private Limited interview preparation:Topics to prepare for the interview - Devops, Data Structures, Algorithms, System Design, 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 interviewSelected

Skills evaluated in this interview

Top VMware Software Devops Engineer Interview Questions and Answers

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (1)

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. Questions related to AD, Networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare very well for the profile you are applying for. Be confident with your answers.

Top VMware Software Technical Support Engineer Interview Questions and Answers

Q1. What is networking? What is IPV4? Explain network layer Implement networking layer concept in real life
View answer (1)

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

I applied via Company Website and was interviewed in Mar 2020. There was 1 interview round.

Interview Questionnaire 

12 Questions

  • Q1. What are terraform modules
  • Ans. 

    Terraform modules are reusable components that allow you to define and manage infrastructure as code.

    • Modules are collections of resources that can be used across multiple Terraform configurations

    • They can be shared and reused by other teams or projects

    • Modules can be published to the Terraform Registry for easy discovery and use

    • They help to reduce duplication of code and simplify infrastructure management

  • Answered by AI
  • Q2. How would you debug apache nginx issues
  • Ans. 

    Debugging Apache Nginx issues involves checking logs, configuration files, and server status.

    • Check error logs for any relevant error messages

    • Verify the configuration files for syntax errors

    • Check server status and resource usage

    • Use tools like curl or telnet to test connectivity and response times

    • Check firewall rules and network settings

    • Consider load balancing and caching configurations

  • Answered by AI
  • Q3. How would you prevent a ddos attach
  • Ans. 

    Prevent DDoS attack by implementing various measures

    • Implementing firewalls and intrusion detection systems

    • Using load balancers to distribute traffic

    • Blocking traffic from suspicious IP addresses

    • Using content delivery networks (CDNs)

    • Limiting the number of requests per IP address

    • Using anti-DDoS services provided by cloud providers

    • Regularly monitoring network traffic for unusual patterns

  • Answered by AI
  • Q4. Is there a way to blacklist IPs in AWS
  • Ans. 

    Yes, AWS provides various methods to blacklist IPs.

    • Use AWS WAF to create rules to block specific IP addresses

    • Configure security groups to deny traffic from specific IP addresses

    • Utilize AWS Network ACLs to block traffic from specific IP addresses

  • Answered by AI
  • Q5. What is average load in Linux
  • Ans. 

    Average load in Linux refers to the amount of work being done by the system at a given time.

    • Average load is measured as a decimal number, with 1.00 representing a fully loaded system.

    • It takes into account both running processes and processes waiting for resources.

    • High average load can indicate a need for more resources or optimization of processes.

    • Command 'uptime' can be used to check the average load on a Linux system

  • Answered by AI
  • Q6. Describe inodes and file descriptors. What is the use of swap
  • Ans. 

    Inodes are data structures that store information about files on a Unix/Linux file system. File descriptors are unique identifiers for open files. Swap is a space on a hard disk used as virtual memory.

    • Inodes contain metadata about files such as ownership, permissions, and timestamps.

    • File descriptors are used by the operating system to keep track of open files and to perform I/O operations on them.

    • Swap is used when the ...

  • Answered by AI
  • Q7. What does a load balancer do when an instance in aws stops
  • Ans. 

    Load balancer routes traffic to other healthy instances

    • Load balancer detects the unhealthy instance

    • Stops sending traffic to that instance

    • Routes traffic to other healthy instances

    • Maintains high availability and scalability of the application

  • Answered by AI
  • Q8. How would you debug a website which is progressively slowing down
  • Ans. 

    To debug a progressively slowing down website, I would analyze the server logs, check for memory leaks, and optimize the code.

    • Analyze server logs to identify any errors or bottlenecks

    • Check for memory leaks in the code

    • Optimize the code by removing unnecessary scripts and optimizing images

    • Use tools like Chrome DevTools to identify performance issues

    • Consider implementing a content delivery network (CDN) to improve website

  • Answered by AI
  • Q9. Docker command to transfer an image from one machine to another without using docker registry
  • Ans. 

    Docker save and Docker load commands can be used to transfer an image from one machine to another without using a Docker registry.

    • Use the 'docker save' command to save the image as a tar file on the source machine

    • Transfer the tar file to the destination machine using any file transfer method (e.g., scp)

    • On the destination machine, use the 'docker load' command to load the image from the tar file

  • Answered by AI
  • Q10. Write a program to reverse a string in Python
  • Ans. 

    A program to reverse a string in Python

    • Use the slicing technique to reverse the string

    • Start with the last character and move backwards

    • Store the reversed string in a new variable

  • Answered by AI
  • Q11. Write ansible playbook to install apache
  • Ans. 

    Ansible playbook to install Apache

    • Create a playbook file with .yml extension

    • Define hosts and remote user

    • Add tasks to install Apache package

    • Start Apache service

    • Save and run the playbook using ansible-playbook command

  • Answered by AI
  • Q12. What is the usecase which would require setup of distributed jenkins nodes
  • Ans. 

    Distributed Jenkins nodes are used to handle large-scale builds and improve performance.

    • Large-scale builds: When there are a large number of builds to be executed simultaneously, distributed Jenkins nodes can handle the load by distributing the builds across multiple nodes.

    • Improved performance: By distributing the workload, the overall build time can be reduced, resulting in improved performance.

    • Resource utilization: D...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They have a zoom video call. And it's really lengthy. Goes beyond an hour

Skills evaluated in this interview

Top VMware Software Devops Engineer Interview Questions and Answers

Q1. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

Analyst Interview Questions & Answers

user image Yashwanthi Gadiraju

posted on 12 May 2021

Interview Questionnaire 

1 Question

  • Q1. Prior experience

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)

VMware Software interview questions for popular designations

 Technical Support Engineer

 (13)

 Business Analyst

 (9)

 Member Technical Staff

 (9)

 Mts Software Engineer

 (7)

 Software Engineer

 (7)

 Senior Business Analyst

 (4)

 Software Developer

 (4)

 Staff Engineer

 (4)

I applied via Company Website and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenario based question

Interview Preparation Tips

Interview preparation tips for other job seekers - How will you troubleshoot the issues

What will be your approach in resolving a issue

Top VMware Software Technical Support Engineer Interview Questions and Answers

Q1. What is networking? What is IPV4? Explain network layer Implement networking layer concept in real life
View answer (1)

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

Get interview-ready with Top VMware Software Interview Questions

I applied via LinkedIn and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked agile and basic java selenium Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare ur basics well and ur all set

Top VMware Software Member Technical Staff Interview Questions and Answers

Q1. Next Smallest Palindrome Problem Statement Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'. Explanation: You are given a number in string format, and your task is to determine the small... read more
Add answer

Member Technical Staff Interview Questions asked at other Companies

Q1. Buy and Sell Stock Problem Statement Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You can perform up to two buy-and-sell transactions to maximize your profit... read more
Add answer

Jobs at VMware Software

View all

Consultant Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2020

I applied via Company Website and was interviewed in Aug 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Functionality of components like vrops, loginsight, vRA.
  • Ans. 

    vROps, Log Insight, and vRA are components of VMware's vRealize Suite that provide functionality for monitoring, logging, and automation.

    • vROps (vRealize Operations) provides performance monitoring and capacity management for virtual and cloud environments.

    • Log Insight is a log management and analysis tool that helps identify and troubleshoot issues in the environment.

    • vRA (vRealize Automation) is an automation platform t...

  • Answered by AI
  • Q2. Use case based questions on esxi, vrops vCenter

Interview Preparation Tips

Interview preparation tips for other job seekers - This was my 4th interview scheduled in VMware. Initially for first 3 attempt process was kept on hold or opening kept on hold but this time, HR called directly. And then process went pretty smooth and received offer letter within 2 weeks

Skills evaluated in this interview

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

I was interviewed before Mar 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions based on DSA, OOPS and puzzles.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Q2. 

    Reverse Number Problem Statement

    Ninja is exploring new challenges and desires to reverse a given number. Your task is to assist Ninja in reversing the number provided.

    Note:

    If a number has trailing ze...

  • Q3. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Q4. What is overloading in the context of Object-Oriented Programming (OOP)?
Round 2 - Video Call 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with question based on Web Dev, Cloud Computing, Networking etc.

  • Q1. What is TELNET?
  • Q2. What is the difference between TELNET and SSH?
  • Q3. 

    Problem: Sort an Array of 0s, 1s, and 2s

    Given an array/list ARR consisting of integers where each element is either 0, 1, or 2, your task is to sort this array in increasing order.

    Input:

    The input sta...
  • Q4. What is a hypervisor?
  • Q5. Can you explain cloud computing in layman’s terms?
  • Q6. What are the stages in the Software Development Life Cycle?
Round 3 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions based on DSA and OOPS. A detailed discussion on my projects was also carried out.

  • Q1. 

    Common Elements in Three Sorted Arrays

    Given three sorted arrays A, B, and C of lengths N, M, and K respectively, your task is to find all elements that are present in all three arrays.

    Input:

    The first...
  • Q2. What is a volatile variable?
  • Q3. Can you explain the concept of multithreading in Java?
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

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 - 4 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

Top VMware Software Software Developer Interview Questions and Answers

Q1. Pair Sum in Binary Search Tree Given a Binary Search Tree (BST) and a target value 'K', determine if there exist two unique elements in the BST such that their sum equals the target 'K'. Explanation: A BST is a type of binary tree where eac... read more
Add answer

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions based on DSA.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Q2. 

    Flip Bits Problem Explanation

    Given an array of integers ARR of size N, consisting of 0s and 1s, you need to select a sub-array and flip its bits. Your task is to return the maximum count of 1s that can b...

  • Q3. 

    Check If Preorder Traversal Is Valid

    Determine whether a given array ARR of positive integers is a valid Preorder Traversal of a Binary Search Tree (BST).

    A binary search tree (BST) is a tree structure w...

  • Q4. 

    First and Last Position of an Element in a Sorted Array

    Given a sorted array/list ARR consisting of ‘N’ elements, and an integer ‘K’, your task is to find the first and last occurrence of ‘K’ in ARR.

    Exp...

Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on DSA, OS, OOPS etc.

  • Q1. 

    Intersection of Two Arrays Problem Statement

    Given two arrays A and B with sizes N and M respectively, both sorted in non-decreasing order, determine their intersection.

    The intersection of two arrays in...

  • Q2. 

    Remove Duplicates From Unsorted Linked List Problem Statement

    You are provided with a linked list consisting of N nodes. Your task is to remove duplicate nodes such that each element occurs only once in t...

  • Q3. What is the difference between paging and swapping in operating systems?
  • Q4. Can you provide an example of a deadlock in operating systems?
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA, OOPS and Puzzles.

  • Q1. 

    Segregate Odd-Even Problem Statement

    In a wedding ceremony at NinjaLand, attendees are blindfolded. People from the bride’s side hold odd numbers, while people from the groom’s side hold even numbers. For...

  • Q2. 

    Convert Sorted Array to BST Problem Statement

    Given a sorted array of length N, your task is to construct a balanced binary search tree (BST) from the array. If multiple balanced BSTs are possible, you ca...

  • Q3. What is the difference between the MVC (Model-View-Controller) and MVT (Model-View-Template) design patterns?
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

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 interviewSelected

Skills evaluated in this interview

Top VMware Software Software Developer Interview Questions and Answers

Q1. Pair Sum in Binary Search Tree Given a Binary Search Tree (BST) and a target value 'K', determine if there exist two unique elements in the BST such that their sum equals the target 'K'. Explanation: A BST is a type of binary tree where eac... read more
Add answer

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions based on DSA and OOPS.

  • Q1. How do you dynamically allocate a 2D array in C?
  • Q2. What are virtual functions in C++?
  • Q3. What are virtual base classes?
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions based on OS/Networking etc.

  • Q1. What is the system call that creates a separate connection?
  • Q2. What does the epoll_wait() system call do?
  • Q3. What are the different protocols used in the transport layer?
  • Q4. What is the difference between TCP and UDP?
Round 3 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions based on Networking etc.

  • Q1. What is the purpose of ICMP?
  • Q2. What are the types of connection release supported by TCP?
  • Q3. What protocols are used by the MAC layer?
  • Q4. What is the ARP protocol?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAVMware Software India Private Limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Networking, 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

Top VMware Software Software Engineer Interview Questions and Answers

Q1. What is the system call that creates a separate connection?
Add answer

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)

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. Prerequisites for HA ? First, for clusters enabled for VMware HA, all virtual m...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.

VMware Software Interview Process

based on 101 interviews

Interview experience

4.4
  
Good
View more

Explore Interview Questions and Answers for Top Skills at VMware Software

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 902 Interviews
Amdocs Interview Questions
3.7
 • 532 Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
Dell Interview Questions
4.0
 • 393 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
Red Hat Interview Questions
4.3
 • 60 Interviews
View all

VMware Software Reviews and Ratings

based on 1.1k reviews

4.4/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

4.4

Salary

3.6

Job security

4.4

Company culture

3.9

Promotions

4.1

Work satisfaction

Explore 1.1k Reviews and Ratings
IC Design Engineer

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Senior Technical Writer

Kalyani,

Bangalore / Bengaluru

4-9 Yrs

₹ 19-30 LPA

R&D Engineer

Bangalore / Bengaluru

0-6 Yrs

Not Disclosed

Explore more jobs
Member Technical Staff
566 salaries
unlock blur

₹12 L/yr - ₹43.4 L/yr

Senior Member of Technical Staff
509 salaries
unlock blur

₹24 L/yr - ₹72.6 L/yr

Technical Support Engineer
398 salaries
unlock blur

₹5.2 L/yr - ₹18.9 L/yr

Business Analyst
255 salaries
unlock blur

₹4.8 L/yr - ₹17 L/yr

Technical Staff Member 3
250 salaries
unlock blur

₹17 L/yr - ₹60 L/yr

Explore more salaries
Compare VMware Software with

Microsoft Corporation

4.0
Compare

Oracle

3.7
Compare

IBM

4.0
Compare

SAP

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview