Upload Button Icon Add office photos

VMware Software

Compare button icon Compare button icon Compare

Filter interviews by

VMware Software Sdet Automation Test Engineer Interview Questions and Answers

Updated 17 Jul 2024

VMware Software Sdet Automation Test Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Networking related questions
  • Q2. Questions related to file transfer between multiple systems
Round 2 - Technical 

(2 Questions)

  • Q1. Multithreading questions
  • Q2. Related to multiple thread synchronization, lock etc
Round 3 - Coding Test 

Space and time complexities were asked for program

Round 4 - Technical 

(1 Question)

  • Q1. Managerial round

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

General aptitude and out put realted questions

Round 2 - Coding Test 

Face to face dsa and string manipulations

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

I applied via Company Website and was interviewed in 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 - Coding Test 

Basic Easy Level LeetCode Questions.

Round 3 - Coding Test 

Medium Level Questions from LeetCode along with questions on String and one scenario based DS question.

Round 4 - One-on-one 

(1 Question)

  • Q1. Manager Round where he asked me about my past experience and some basic day to day tasks
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Core java and OOPS concepts and basic coding tricks and puzzly questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Selenium webdriver basic
  • Q2. Automation testing
Round 3 - HR 

(1 Question)

  • Q1. Salarydiscussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude and coding question were asked

Round 2 - Technical 

(1 Question)

  • Q1. Question related to your project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

6 questions asked in an interview

Round 2 - Technical 

(2 Questions)

  • Q1. Slider window problem
  • Ans. 

    The slider window problem involves finding the maximum sum of a subarray of a fixed size k within an array of integers.

    • Use a sliding window approach to efficiently find the maximum sum subarray.

    • Keep track of the current sum within the window and update it as you slide the window.

    • Maintain a variable to store the maximum sum found so far.

    • Example: Given array [1, 3, -1, -3, 5, 3, 6, 7] and window size k=3, the maximum sum

  • Answered by AI
  • Q2. Stock buy sell problem
  • Ans. 

    The stock buy sell problem involves finding the maximum profit that can be made by buying and selling a stock at the right times.

    • Calculate the difference between each pair of consecutive prices in the array

    • Find the maximum subarray sum of the differences using Kadane's algorithm

    • The maximum subarray sum is the maximum profit that can be made

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 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 - Coding Test 

Java oops ds algo framework design api sql must

Round 3 - Coding Test 

Coding ds framework design sql

Round 4 - HR 

(2 Questions)

  • Q1. What is salary expectation
  • Q2. Location of joining and how soon you can join.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic code and dbms query

Round 2 - Technical 

(2 Questions)

  • Q1. Asked logical questions
  • Q2. What is a constructor
  • Ans. 

    A constructor is a special type of method that is automatically called when an object is created.

    • Constructors have the same name as the class they belong to

    • They are used to initialize the object's state

    • Constructors do not have a return type

    • They can be overloaded to accept different parameters

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain framework
  • Ans. 

    A framework is a set of guidelines, libraries, and tools that help in developing and executing automated tests efficiently.

    • Provides structure and organization for test automation projects

    • Promotes reusability of code and components

    • Offers built-in functionalities for common testing tasks

    • Supports integration with different tools and technologies

  • Answered by AI
  • Q2. Explain your framework
  • Ans. 

    My framework is a data-driven framework using Selenium WebDriver and TestNG for automated testing.

    • Utilizes Selenium WebDriver for interacting with web elements

    • Uses TestNG for test case management and execution

    • Employs data-driven approach for test data management

    • Supports parallel execution for faster testing

    • Includes reporting features for test results analysis

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Dec 2022. There were 3 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. Selenium and testng questions.
  • Q2. Java program to reverse a sentence
  • Ans. 

    Java program to reverse a sentence

    • Split the sentence into words using the split() method

    • Create a new array to store the reversed words

    • Iterate through the words in reverse order and add them to the new array

    • Join the reversed words using the join() method to form the reversed sentence

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Oops and collection questions.
  • Q2. Program to find repeated character in a word.
  • Ans. 

    Program to find repeated character in a word.

    • Iterate through each character in the word

    • Store each character in a data structure

    • If a character is already present in the data structure, it is a repeated character

  • Answered by AI

Skills evaluated in this interview

VMware Software Interview FAQs

How many rounds are there in VMware Software Sdet Automation Test Engineer interview?
VMware Software interview process usually has 4 rounds. The most common rounds in the VMware Software interview process are Technical and Coding Test.
What are the top questions asked in VMware Software Sdet Automation Test Engineer interview?

Some of the top questions asked at the VMware Software Sdet Automation Test Engineer interview -

  1. Questions related to file transfer between multiple syst...read more
  2. Related to multiple thread synchronization, lock ...read more
  3. Networking related questi...read more

Tell us how to improve this page.

VMware Software Sdet Automation Test Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
VMware Software Sdet Automation Test Engineer Salary
based on 6 salaries
₹20 L/yr - ₹45 L/yr
102% more than the average Sdet Automation Test Engineer Salary in India
View more details

VMware Software Sdet Automation Test Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

2.0

Salary

5.0

Job security

5.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
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