Upload Button Icon Add office photos

Dell EMC

Compare button icon Compare button icon Compare

Filter interviews by

Dell EMC Senior SQA Engineer Interview Questions and Answers

Updated 24 Jan 2022

Dell EMC Senior SQA Engineer Interview Experiences

1 interview found

I applied via Referral and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain the process flow of the projects you've worked with
Round 2 - One-on-one 

(1 Question)

  • Q1. Python programming for anagram, substring, tic-tac-toe
  • Ans. 

    Python code for anagram, substring, and tic-tac-toe operations on an array of strings.

    • For anagram, sort each string and compare them

    • For substring, use the 'in' operator to check if a string is a substring of another

    • For tic-tac-toe, create a 2D array and check for winning conditions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go well prepared with your project process flows and python programming

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Difference between absolute and relative Xpath
  • Ans. 

    Absolute Xpath starts from the root element, while relative Xpath starts from any node in the DOM structure.

    • Absolute Xpath starts with a single forward slash (/) and starts selection from the root node.

    • Relative Xpath starts with a double forward slash (//) and starts selection from the current node or any node in the DOM structure.

    • Absolute Xpath is more brittle and prone to breaking if the structure of the page changes...

  • Answered by AI
  • Q2. What would be return if multiple tabs are open
  • Ans. 

    The return would be the number of tabs open in the browser.

    • The return value would be an integer representing the count of open tabs.

    • For example, if there are 5 tabs open, the return value would be 5.

  • Answered by AI
  • Q3. What are the waits in selenium
  • Ans. 

    Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a defined polling frequency.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q4. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, disrupting the flow of the test script.

    • Exceptions are thrown when there is an unexpected behavior in the application under test or in the test script itself.

    • Common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, and StaleElementReferenceException.

    • Handling exceptions in Selenium can be done using try-...

  • Answered by AI
  • Q5. What is feature and step definitions in cucumber BDD
  • Ans. 

    Feature files contain high-level description of the functionality to be tested, while step definitions are the implementation of the steps in the feature file using code.

    • Feature files are written in Gherkin syntax and describe the behavior of the application in plain text.

    • Step definitions are written in programming languages like Java, Ruby, etc., and map the steps in the feature file to automation code.

    • Feature files a...

  • Answered by AI
  • Q6. How to input data in cucumber
  • Ans. 

    Data can be input in Cucumber using feature files and step definitions.

    • Data can be input in feature files using scenarios and scenario outlines

    • Step definitions can be used to define the actions to be taken with the input data

    • Data tables can be used in feature files to input structured data

    • Examples keyword can be used in scenario outlines to provide multiple sets of input data

  • Answered by AI
  • Q7. Basic Java questions like access modifiers, method overloading and overriding
  • Q8. What is Test case, Test plan and Test Secenarios
  • Ans. 

    Test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements. Test plan is a document outlining the scope, approach, resources, and schedule of testing activities. Test scenarios are detailed descriptions of possible interactions with the system.

    • Test case: specific conditions to be tested, expected results, steps to execute

    • Test plan: overall strate...

  • Answered by AI
  • Q9. Hooks in Java
  • Ans. 

    Hooks in Java are methods that allow subclasses to override or extend the behavior of a superclass.

    • Hooks are commonly used in frameworks like JUnit and TestNG for test automation.

    • They are often used for setup and teardown operations before and after test methods.

    • Examples include @Before, @After, @BeforeClass, and @AfterClass annotations in JUnit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The second round interview was quite challenging, with numerous questions focused on core Java topics such as data structures and linked lists. It felt less like a testing interview and more akin to a developer interview.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain your project
  • Q2. Write code to Automate sauce demo login functionality
  • Ans. 

    Automate sauce demo login functionality using code

    • Use Selenium WebDriver to automate the login process

    • Identify the username and password fields using locators

    • Enter valid credentials and click on the login button

    • Verify successful login by checking for the presence of a welcome message

  • Answered by AI
  • Q3. Write code to automate getting product prices by their names
  • Ans. 

    Automate getting product prices by their names

    • Create a function that takes in an array of product names as input

    • Use a web scraping tool like Selenium to extract prices from a website

    • Map the product names to their corresponding prices and return the result

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

I was interviewed in Oct 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. TestNG: explain different annotations, parallel test,
  • Ans. 

    testNG annotations are used to control the flow of test execution and parallel test execution allows running tests concurrently.

    • testNG annotations include @Test, @BeforeSuite, @AfterSuite, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod

    • Annotations help in setting up preconditions, postconditions, grouping tests, prioritizing tests, and enabling/disabling tests

    • Parallel test execution in t...

  • Answered by AI
  • Q2. Selenium: actions class, xpath writing, windowhandles.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for testNG, selenium well and java programming.

Skills evaluated in this interview

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

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me your Self introduce
  • Q2. Tell me project structure
  • Ans. 

    Project structure refers to the organization of files, folders, and resources within a software project.

    • Main folders like src (source code), test (test cases), lib (libraries), docs (documentation)

    • Subfolders for specific modules or components

    • Configuration files like pom.xml, package.json, etc.

    • Build scripts like Jenkinsfile, Dockerfile

    • Version control files like .gitignore, .gitattributes

    • README.md file for project overvi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Skill preparation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was easy test and was able to crack it

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is Selenium
  • Q2. What is test ng

QA Engineer Interview Questions & Answers

Cybage user image mayur bongane

posted on 3 Nov 2024

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

(2 Questions)

  • Q1. Related to SDLC
  • Q2. Agile methodologies
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Case Study 

PM modi make in india

Round 2 - Aptitude Test 

PM modi make in india

Round 3 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Ans. 

    I am a detail-oriented QA Engineer with experience in manual and automated testing.

    • Experienced in creating test plans and test cases

    • Proficient in using testing tools like Selenium and Jira

    • Strong analytical skills to identify and troubleshoot issues

    • Collaborative team player with excellent communication skills

  • Answered by AI
  • Q2. Why do you want to join the company
  • Ans. 

    I am impressed by the company's innovative products and strong reputation in the industry.

    • I admire the company's commitment to quality and continuous improvement.

    • I am excited about the opportunity to work with a talented team of professionals.

    • I believe my skills and experience align well with the company's goals and values.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go for it
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Automation frameworks
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Aptitude Test 

30 mcqs written test

Round 2 - Coding Test 

Related to python basics

Round 3 - HR 

(2 Questions)

  • Q1. HRAsked About myself
  • Q2. About the fav city

Dell EMC Interview FAQs

How many rounds are there in Dell EMC Senior SQA Engineer interview?
Dell EMC interview process usually has 2 rounds. The most common rounds in the Dell EMC interview process are One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.6k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 900 Interviews
DXC Technology Interview Questions
3.7
 • 812 Interviews
NTT Data Interview Questions
3.9
 • 610 Interviews
Cisco Interview Questions
4.1
 • 396 Interviews
Atos Interview Questions
3.9
 • 367 Interviews
Synechron Interview Questions
3.6
 • 362 Interviews
View all

Dell EMC Senior SQA Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

1.0

Skill development

5.0

Work-life balance

3.0

Salary

4.0

Job security

5.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
783 salaries
unlock blur

₹12 L/yr - ₹38.2 L/yr

Software Engineer
343 salaries
unlock blur

₹5.3 L/yr - ₹20.5 L/yr

Software Engineer2
329 salaries
unlock blur

₹8.3 L/yr - ₹22 L/yr

Senior Analyst
272 salaries
unlock blur

₹4.7 L/yr - ₹15 L/yr

Principal Software Engineer
266 salaries
unlock blur

₹17 L/yr - ₹55 L/yr

Explore more salaries
Compare Dell EMC with

Hewlett Packard Enterprise

4.2
Compare

IBM

4.0
Compare

Cisco

4.1
Compare

NetApp

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