Upload Button Icon Add office photos

VMware Software

Compare button icon Compare button icon Compare

Filter interviews by

VMware Software Senior Member Technical Interview Questions and Answers

Updated 14 Oct 2024

VMware Software Senior Member Technical Interview Experiences

2 interviews found

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
Round 2 - Technical 

(2 Questions)

  • Q1. Merge sort was asked
  • Q2. Binary search was asked
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Traversal in matrix
  • Ans. 

    Traversal in matrix is the process of visiting each element in a matrix in a specific order.

    • Traversal can be done in different orders such as row-wise, column-wise, spiral, etc.

    • For example, in a 3x3 matrix, row-wise traversal would be [1, 2, 3, 4, 5, 6, 7, 8, 9].

    • Spiral traversal in the same matrix would be [1, 2, 3, 6, 9, 8, 7, 4, 5].

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

(1 Question)

  • Q1. Vending machine lld
Round 3 - One-on-one 

(1 Question)

  • Q1. Red bus high level design
  • Ans. 

    Red bus high level design

    • Design a system for booking and managing bus tickets

    • Include features like searching for buses, selecting seats, and making payments

    • Consider scalability, availability, and security in the design

    • Use a distributed architecture with load balancing and fault tolerance

    • Implement a database for storing bus schedules, seat availability, and user information

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

(1 Question)

  • Q1. Managerial questions some technical

Skills evaluated in this interview

Senior Member Technical Interview Questions Asked at Other Companies

Q1. What is difference between Docker and Virtual Machine?
Q2. What is String Pool? Why Strings are called immutable?
Q3. What are some ways to optimize SQL Query?
Q4. What does ADP do? What is it's domain?
Q5. What are functional interfaces and one example.

Interview questions from similar companies

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

(1 Question)

  • Q1. Design parking lot
  • Ans. 

    Design a parking lot with efficient layout and features

    • Consider the size and layout of the parking lot

    • Include designated spots for different types of vehicles (compact, regular, handicapped)

    • Implement a clear signage system for easy navigation

    • Incorporate security measures such as lighting and surveillance cameras

    • Include payment options for parking fees (e.g. ticket machines, mobile app)

    • Consider environmental factors lik

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - While I was giving my last round, in between I got an email that I am not selected. Worst experience ever.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Moderate complexity Problem solving skill test Behavioural questions
Round 3 - Technical 

(1 Question)

  • Q1. - lillye challenging compare to round 1
Round 4 - Behavioral 

(1 Question)

  • Q1. - Overall produc level discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - - prepare DSA
- have good expertise in problem solving skills
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA - Balanced parenthesis variant

Round 2 - Coding Test 

DSA - string manipulation

Round 3 - Coding Test 

DP - Medium level problem

Round 4 - Aptitude Test 

Puzzles - Find the fastest 3 horses

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

(2 Questions)

  • Q1. Advantage disadvantage of monolith and microservices
  • Ans. 

    Monolith has simplicity but lacks scalability, while microservices offer flexibility but introduce complexity.

    • Monolith: Simplicity in development and deployment, easier to debug and test

    • Monolith: Lack of scalability, all components tightly coupled

    • Microservices: Flexibility to use different technologies for different services

    • Microservices: Scalability, each service can be independently scaled

    • Microservices: Increased com...

  • Answered by AI
  • Q2. Lock and Synchronised difference
  • Ans. 

    Lock and Synchronised are both mechanisms used for thread synchronization in Java.

    • Lock is a more flexible and powerful mechanism compared to synchronized keyword in Java.

    • Lock interface provides more functionalities like tryLock(), lockInterruptibly(), etc.

    • Lock allows for more fine-grained control over locking and unlocking of resources.

    • Synchronized keyword is simpler to use but may lead to deadlocks in complex scenario...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Apr 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Count no of links in as web page
  • Ans. 

    To count the number of links on a web page, you can use a web scraping tool or inspect the page's HTML code.

    • Use a web scraping tool like BeautifulSoup or Selenium to extract all the links from the webpage.

    • Inspect the HTML code of the webpage and look for anchor tags (<a>) which contain the links.

    • Count the number of anchor tags to determine the total number of links on the webpage.

  • Answered by AI
  • Q2. Remove zeros from arrays list
  • Ans. 

    Remove zeros from arrays list of strings

    • Iterate through each string in the array

    • Use filter method to remove zeros from each string

    • Return the updated array without zeros

  • Answered by AI
  • Q3. Return type of Findelements
  • Ans. 

    FindElements method returns a list of web elements matching the specified locator.

    • Return type of FindElements is List

    • It returns a list of all elements matching the specified locator

    • Example: List elements = driver.findElements(By.xpath("//input[@type='text']"));

Answered by AI
  • Q4. Find second highest vowel occurance in a string
  • Ans. 

    Find the second highest occurrence of a vowel in a string.

    • Iterate through the string and count the occurrences of each vowel (a, e, i, o, u).

    • Store the counts in an array and find the second highest count.

    • Return the vowel with the second highest count.

  • Answered by AI
  • Q5. Write locator for element in webpage
  • Ans. 

    Use CSS selector to locate element on webpage

    • Use unique id or class names to locate element

    • Use CSS selectors like 'id', 'class', 'name', 'tag name', etc.

    • Use XPath if necessary for complex element locating

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - it was entry leel

    Skills evaluated in this interview

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

    (1 Question)

    • Q1. Sum of principal diagonal elements of a matrix
    • Ans. 

      The sum of principal diagonal elements of a matrix is calculated by adding the elements from the top left to bottom right.

      • Add the elements from the top left to bottom right of the matrix to get the sum of principal diagonal elements.

      • For example, in a 3x3 matrix [[1, 2, 3], [4, 5, 6], [7, 8, 9]], the principal diagonal elements are 1, 5, and 9. Their sum would be 15.

    • Answered by AI
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 4 interview rounds.

    Round 1 - Coding Test 

    Basic DSA problem on BST

    Round 2 - Coding Test 

    Problem solving on 3 sum array

    Round 3 - Technical 

    (3 Questions)

    • Q1. HLD on online chat service
    • Q2. Design 1:1 chat first
    • Ans. 

      Design a 1:1 chat feature for seamless communication between two users.

      • Implement real-time messaging functionality

      • Include features like read receipts, typing indicators, and message timestamps

      • Allow users to share multimedia content such as images and videos

      • Provide options for users to customize their chat settings and notifications

    • Answered by AI
    • Q3. Include media such as photo and video
    Round 4 - One-on-one 

    (2 Questions)

    • Q1. Hiring manager round
    • Q2. Including behavioural question

    Interview Preparation Tips

    Interview preparation tips for other job seekers - nail the basics

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Jul 2023. There were 2 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 

    (2 Questions)

    • Q1. 1. List and Arraylist Differences 2. What happens when element with same key is added into HashMap 3.Spring boot beans and how we can avoid bean instantiation 4.Profile annotation in spring 5.what are the ...
    • Ans. 

      Explanation of differences between List and ArrayList, HashMap behavior with same key, Spring boot beans, Profile annotation in Spring, database configurations in pom.xml, and data structures.

      • List is an interface while ArrayList is a class that implements List interface

      • HashMap replaces the old value with the new value if the same key is added

      • Spring boot beans can be avoided by using @Lazy annotation

      • Profile annotation i...

    • Answered by AI
    • Q2. Programs: 1. Write program to return list of duplicate integer using int array 2. Write program to return square of integers in ascending order input:[-4,0,3,5] output:[0,9,16,25]
    • Ans. 

      Program to return square of integers in ascending order from input array

      • Iterate through the input array and calculate the square of each integer

      • Store the squares in a new array and sort it in ascending order

      • Return the sorted array of squares

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare well for below
    1. datastructures
    2.basic string programs
    3. spring boot

    Skills evaluated in this interview

    VMware Software Interview FAQs

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

    Some of the top questions asked at the VMware Software Senior Member Technical interview -

    1. Red bus high level des...read more
    2. Traversal in mat...read more
    3. quick sorting is asked in this ro...read more

    Tell us how to improve this page.

    VMware Software Senior Member Technical Interview Process

    based on 2 interviews

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    IBM Interview Questions
    4.0
     • 2.3k Interviews
    Oracle Interview Questions
    3.7
     • 846 Interviews
    Amdocs Interview Questions
    3.7
     • 512 Interviews
    Zoho Interview Questions
    4.3
     • 505 Interviews
    Dell Interview Questions
    4.0
     • 385 Interviews
    Cisco Interview Questions
    4.1
     • 370 Interviews
    SAP Interview Questions
    4.2
     • 283 Interviews
    Adobe Interview Questions
    3.9
     • 233 Interviews
    View all
    VMware Software Senior Member Technical Salary
    based on 17 salaries
    ₹33 L/yr - ₹60 L/yr
    233% more than the average Senior Member Technical Salary in India
    View more details

    VMware Software Senior Member Technical Reviews and Ratings

    based on 3 reviews

    4.4/5

    Rating in categories

    4.4

    Skill development

    4.6

    Work-life balance

    4.4

    Salary

    4.1

    Job security

    4.6

    Company culture

    4.4

    Promotions

    4.1

    Work satisfaction

    Explore 3 Reviews and Ratings
    Member Technical Staff
    564 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Member of Technical Staff
    509 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Technical Support Engineer
    399 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Business Analyst
    255 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Technical Staff Member 3
    250 salaries
    unlock blur

    ₹0 L/yr - ₹0 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