Upload Button Icon Add office photos

Filter interviews by

Volt Money Sdet 2 Interview Questions, Process, and Tips

Updated 22 Jun 2024

Volt Money Sdet 2 Interview Experiences

1 interview found

Sdet 2 Interview Questions & Answers

user image Anonymous

posted on 22 Jun 2024

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

I applied via LinkedIn and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Assignment 

1. They asked me to write test cases of a dummy shopping website.
2. Automate the test cases using selenium java. [can use other tool or programming language]

Round 2 - Coding Test 

1. Asked me a coding question on sliding window algorithm.
a = [0,0,1,0,1,1,1,1,0,1] & k = 1
return the max number of occurrence of k (sequential) i.e length of subarray containing max k
o/p -> 4

2. Other questions I don't remember.

Round 3 - Testing 

(5 Questions)

  • Q1. Introduction, roles and responsibilities in the current project.
  • Q2. Explain the automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools used for automated testing of software applications.

    • Automation framework provides structure and guidelines for creating and executing automated tests.

    • It helps in organizing test scripts, managing test data, and generating test reports.

    • Common types of automation frameworks include keyword-driven, data-driven, and hybrid frameworks.

    • Frameworks like Selenium Web...

  • Answered by AI
  • Q3. What challenges you faced and how you solved them while automating test cases?
  • Ans. 

    I faced challenges in automating test cases related to complex UI interactions and data setup.

    • Handling dynamic elements on the UI by using XPath or CSS selectors

    • Dealing with asynchronous behavior by implementing waits and retries

    • Setting up test data in a consistent and reliable manner

    • Resolving environment-specific issues by using configuration files

    • Collaborating with developers to address bugs found during automation

  • Answered by AI
  • Q4. Gave an scenario, and asked me to write test cases.
  • Q5. Asked few more questions, don't remember. but those questions were mostly on testing, e2e and ci-cd
Round 4 - CTO ROund 

(4 Questions)

  • Q1. Given a scenario, how to test the system/feature.
  • Ans. 

    To test a system/feature, create test cases based on requirements, boundary conditions, negative scenarios, and user workflows.

    • Review requirements and design documents to understand the system/feature.

    • Identify boundary conditions and test them to ensure system stability.

    • Create test cases for positive scenarios to validate expected behavior.

    • Include negative test cases to check error handling and system resilience.

    • Test u...

  • Answered by AI
  • Q2. What kind of testing you will conduct.
  • Ans. 

    I will conduct a variety of testing including functional, regression, performance, security, and usability testing.

    • Functional testing to ensure the software meets requirements

    • Regression testing to check for any new bugs introduced

    • Performance testing to evaluate system speed and responsiveness

    • Security testing to identify vulnerabilities and protect data

    • Usability testing to assess user experience and interface design

  • Answered by AI
  • Q3. Discussion on the testing process.
  • Q4. Qa team structure in my current company.

Skills evaluated in this interview

Interview questions from similar companies

Sdet 2 Interview Questions & Answers

Amazon user image Anonymous

posted on 20 Jul 2022

I applied via Company Website and was interviewed in Jun 2022. 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 - Assignment 

Online coding test on hackerrank. Two questions in 90 minutes followed by some behaviour untimed questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep patience after applying. They take quit some time to get back.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(10 Questions)

  • Q1. "Hello world" java program to print the count of letter 'l'
  • Ans. 

    A Java program to count the occurrences of the letter 'l' in the string 'Hello world'.

    • Create a Java program with a main method.

    • Initialize a String variable with the value 'Hello world'.

    • Use a loop to iterate through each character in the string and count the occurrences of the letter 'l'.

    • Print the count of 'l' at the end.

  • Answered by AI
  • Q2. "Hello world" java program to print output as "olleH dlrow"
  • Ans. 

    Reverse the characters of each word in a given string

    • Split the input string into an array of words

    • Reverse each word in the array

    • Join the reversed words back into a single string

  • Answered by AI
  • Q3. What is the diff between comparator and comparable
  • Ans. 

    Comparator is an interface used to sort objects, while Comparable is an interface used to compare objects for natural ordering.

    • Comparator is used to define custom sorting logic for objects, while Comparable is used for natural ordering based on the class's implementation of compareTo() method.

    • Comparator can be used to sort objects of different classes, while Comparable is implemented within the class itself.

    • Example: So...

  • Answered by AI
  • Q4. What is lamda expression
  • Ans. 

    Lambda expression is a concise way to represent an anonymous function in programming languages.

    • Lambda expressions are used to create small, inline functions without a formal definition.

    • They are commonly used in functional programming languages like Python, Java, and C#.

    • Lambda expressions can be used to simplify code and make it more readable.

    • Example: (x, y) -> x + y is a lambda expression that takes two parameters a

  • Answered by AI
  • Q5. What is contructor chaining
  • Ans. 

    Constructor chaining is the process of calling one constructor from another constructor in a class.

    • Allows reusing code and avoiding duplication

    • Can be achieved using 'this' keyword in the constructor

    • Helps in initializing objects with different parameters

  • Answered by AI
  • Q6. Appium & Selenium architecture
  • Q7. How to handle notifications in mobile automation
  • Ans. 

    Handle notifications in mobile automation by using automation tools to interact with notifications, verify content, dismiss or respond to them.

    • Use automation tools like Appium or Espresso to interact with notifications

    • Verify the content of notifications by extracting text or images

    • Dismiss notifications to continue with test execution

    • Respond to notifications if required for test scenarios

    • Handle different types of notifi...

  • Answered by AI
  • Q8. How to handle if element xpath is different in ios and android apps
  • Ans. 

    Use platform-specific locators or conditional statements to handle different element xpaths in iOS and Android apps.

    • Use platform-specific locators like accessibility id for iOS and resource id for Android

    • Implement conditional statements to switch between different xpaths based on the platform

    • Utilize Appium's platformName capability to identify the platform and adjust the element xpath accordingly

  • Answered by AI
  • Q9. Different TestNG annotations and order
  • Ans. 

    TestNG annotations include @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite

    • @Test - denotes a test method

    • @BeforeMethod - runs before each test method

    • @AfterMethod - runs after each test method

    • @BeforeClass - runs before the first test method in the current class

    • @AfterClass - runs after the last test method in the current class

    • @BeforeSuite - runs before all tests in the suite

    • @AfterSu

  • Answered by AI
  • Q10. What is pom.xml and how to mention dependencies
  • Ans. 

    pom.xml is a configuration file used in Maven projects to define project settings and dependencies.

    • pom.xml stands for Project Object Model XML

    • It is used in Maven projects to manage project configuration, build settings, and dependencies

    • Dependencies are mentioned inside the <dependencies> tag in pom.xml

    • Each dependency is specified with <groupId>, <artifactId>, and <version>

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went well, its been more than a week.. no call back for feedback.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is Regression testing.
  • Ans. 

    Regression testing is the process of retesting a software application to ensure that new code changes have not adversely affected existing functionality.

    • Performed after code changes to verify that existing features still work correctly

    • Helps prevent the introduction of new bugs or issues

    • Can be automated to save time and effort

    • Examples: running test cases after a software update, checking for bugs after adding new featur

  • Answered by AI
  • Q2. Difference between list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is used for collections of items that may change, tuple for fixed collections.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q3. Program to check if the no. is prime
  • Ans. 

    A program to check if a number is prime or not

    • Iterate from 2 to square root of the number and check if it divides the number evenly

    • If any number divides the given number, it is not prime

    • If no number divides the given number, it is prime

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Program to find pallindrome.
  • Ans. 

    Program to find palindrome in an array of strings.

    • Iterate through each string in the array

    • Reverse each string and compare with original string

    • If they are equal, it is a palindrome

  • Answered by AI
  • Q2. How to find element using css selector.
  • Ans. 

    To find an element using CSS selector, you can use the document.querySelector() method.

    • Use document.querySelector() method with the CSS selector as the argument.

    • Make sure the CSS selector is unique to the element you want to find.

    • You can also use document.querySelectorAll() to find multiple elements.

  • Answered by AI
Round 3 - Case Study 

Scenario based questions

Skills evaluated in this interview

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

(5 Questions)

  • Q1. API testing related questions were asked
  • Q2. What is api testing
  • Ans. 

    API testing is a type of software testing that involves testing APIs directly to ensure they meet functionality, reliability, performance, and security requirements.

    • API testing involves testing the functionality, reliability, performance, and security of APIs.

    • It focuses on verifying that the API meets its specifications and works as expected.

    • API testing can be done manually or using automated tools like Postman or Soap...

  • Answered by AI
  • Q3. How do you log bugs
  • Ans. 

    I log bugs by documenting detailed steps to reproduce, including screenshots and logs.

    • Document detailed steps to reproduce the bug

    • Include screenshots or videos if applicable

    • Attach relevant logs or error messages

    • Assign severity and priority levels to the bug

    • Track bug status and resolution in a bug tracking tool

  • Answered by AI
  • Q4. What is agilemethodology
  • Ans. 

    Agile methodology is a software development approach that emphasizes flexibility, collaboration, and iterative development.

    • Focus on delivering working software in short iterations

    • Emphasizes collaboration between cross-functional teams

    • Allows for changes and adjustments throughout the development process

    • Common practices include daily stand-up meetings, sprint planning, and retrospectives

  • Answered by AI
  • Q5. What is selenium framework
  • Ans. 

    Selenium framework is a set of tools, libraries, and best practices used for automated testing of web applications.

    • Selenium framework allows for writing and executing automated tests for web applications.

    • It provides features like test case management, reporting, and integration with CI/CD tools.

    • Popular frameworks built on top of Selenium include TestNG, JUnit, and Cucumber.

    • Selenium WebDriver is a key component of the f...

  • 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 Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Senior Test Engineer with a strong background in software testing and quality assurance.

    • Over 8 years of experience in testing web and mobile applications

    • Proficient in test planning, execution, and automation using tools like Selenium and JIRA

    • Skilled in identifying and documenting defects, and working closely with development teams to resolve issues

    • Strong analytical and problem-solving skills, with a keen at

  • Answered by AI
  • Q2. Project details
Round 2 - HR 

(2 Questions)

  • Q1. What is Salesforce ?
  • Ans. 

    Salesforce is a cloud-based customer relationship management (CRM) platform that helps businesses manage their sales, customer service, marketing, and more.

    • Cloud-based CRM platform

    • Helps businesses manage sales, customer service, marketing, etc.

    • Provides tools for automation, analytics, and integration

    • Offers a wide range of apps and services for various business needs

  • Answered by AI
  • Q2. Salesforce CRM
Round 3 - HR 

(2 Questions)

  • Q1. Difference Between Workflow and process builder
  • Ans. 

    Workflow is a declarative automation tool for automating standard processes, while Process Builder is a visual tool for automating business processes.

    • Workflow is based on criteria and actions, while Process Builder uses a visual interface with point-and-click functionality.

    • Workflow can only perform actions on the same object, while Process Builder can work across multiple objects.

    • Workflow can only update fields on the ...

  • Answered by AI
  • Q2. What is automation process in salesforce
  • Ans. 

    Automation process in Salesforce involves using tools like Salesforce Automation, Process Builder, and Apex triggers to automate repetitive tasks and streamline workflows.

    • Salesforce Automation allows users to create rules and triggers to automate tasks like sending emails, updating records, and creating tasks.

    • Process Builder is a visual tool that allows users to automate business processes by creating workflows with po...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between sdlc and stlc
  • Q2. Bug life cycle? Defect triage

Interview Preparation Tips

Topics to prepare for Deloitte Test Engineer interview:
  • Basic concepts
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Asked me to write a two programs - identifying duplicates words 2. Sum of series of numbers
  • Q2. What is cucumber options
  • Ans. 

    Cucumber options are configuration settings used in Cucumber to customize test execution.

    • Cucumber options can be used to specify features, tags, formats, and more in the test execution

    • Examples include specifying tags to run specific scenarios, setting output formats for test reports, and defining feature files to run

  • Answered by AI
  • Q3. Oops concepts used in my project
  • Ans. 

    In my project, I have used Oops concepts like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Reusing code and creating a hierarchy of classes.

    • Polymorphism: Ability to present the same interface for different data types.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q4. Data providers, invocation count
  • Q5. Find elements, window handles return type
  • Ans. 

    The find elements method returns a list of web elements matching a specified locator. Window handles return type is a set of strings representing unique identifiers for browser windows.

    • Find elements method returns a list of web elements matching a specified locator

    • Window handles return type is a set of strings representing unique identifiers for browser windows

  • 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 LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Stlc question asked manual qa
Round 2 - Technical 

(1 Question)

  • Q1. Coding asked sql query

Sdet Engineer Interview Questions & Answers

Accenture user image AKANKSHA JAISWAL

posted on 28 Nov 2024

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

I applied via Campus Placement

Round 1 - Coding Test 

Apt and coding test was in first

Round 2 - Coding Test 

2 coding questions was ask

Round 3 - One-on-one 

(2 Questions)

  • Q1. It was on your resume question
  • Q2. Hr questions was asked in interview

Volt Money Interview FAQs

How many rounds are there in Volt Money Sdet 2 interview?
Volt Money interview process usually has 4 rounds. The most common rounds in the Volt Money interview process are Assignment and Coding Test.
What are the top questions asked in Volt Money Sdet 2 interview?

Some of the top questions asked at the Volt Money Sdet 2 interview -

  1. What challenges you faced and how you solved them while automating test cas...read more
  2. Given a scenario, how to test the system/featu...read more
  3. What kind of testing you will condu...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Volt Money interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.8k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.4k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
Genpact Interview Questions
3.9
 • 2.9k Interviews
View all
Software Developer
3 salaries
unlock blur

₹16 L/yr - ₹19 L/yr

Data Engineer
3 salaries
unlock blur

₹15 L/yr - ₹30 L/yr

Explore more salaries
Compare Volt Money with

TCS

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview