Upload Button Icon Add office photos

ASDC

Compare button icon Compare button icon Compare
3.6

based on 15 Reviews

Filter interviews by

ASDC Sdet Manager Interview Questions and Answers

Updated 7 Dec 2024

ASDC Sdet Manager Interview Experiences

1 interview found

Sdet Manager Interview Questions & Answers

user image Anonymous

posted on 7 Dec 2024

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

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a seasoned SDET Manager with a strong background in software testing and quality assurance.

    • Over 10 years of experience in software testing and test automation

    • Managed a team of SDETs to ensure high quality software releases

    • Expertise in creating test strategies and implementing best practices

    • Strong knowledge of testing tools and methodologies

    • Passionate about continuous improvement and delivering high-quality product

  • Answered by AI
  • Q2. How you'll manage the teams?
  • Ans. 

    I will manage the teams by setting clear goals, providing support and resources, fostering collaboration, and promoting a positive work culture.

    • Set clear goals and expectations for each team member

    • Provide necessary support, resources, and training for team members

    • Foster collaboration and communication within the team

    • Promote a positive work culture and morale

    • Regularly communicate with team members to address any issues ...

  • Answered by AI

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding question was there

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. How you are fit to this role
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java coding question with moderate level

Round 2 - Technical 

(1 Question)

  • Q1. How to test a s/w for Lift
  • Ans. 

    Testing a lift system involves multiple steps to ensure its functionality and safety.

    • 1. Verify the lift system's basic functionality such as going up and down smoothly.

    • 2. Test emergency stop functionality to ensure safety measures are in place.

    • 3. Check for proper alignment of doors and sensors to prevent accidents.

    • 4. Conduct load testing to ensure the lift can handle its maximum capacity.

    • 5. Test communication systems b...

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Previous projects
  • Ans. 

    I have worked on various projects involving test automation, performance testing, and quality assurance.

    • Developed automated test scripts using Selenium WebDriver for web applications

    • Conducted performance testing using JMeter to identify bottlenecks and optimize system performance

    • Implemented quality assurance processes to ensure software meets requirements and standards

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(7 Questions)

  • Q1. Amazon: Add Cart feature - Write Selenium code
  • Ans. 

    Use Selenium to automate adding items to cart on Amazon website.

    • Locate the 'Add to Cart' button on the product page using Selenium's findElement method

    • Click on the 'Add to Cart' button to add the item to the cart

    • Verify that the item has been successfully added to the cart by checking the cart contents

  • Answered by AI
  • Q2. Test cases of Login API
  • Ans. 

    Test cases for Login API

    • Verify valid username and password login successfully

    • Verify invalid username and password combination fails to login

    • Verify login with empty username or password fails

    • Verify login with special characters in username or password fails

  • Answered by AI
  • Q3. Write a program to count the character in a string
  • Ans. 

    A program to count the characters in a string

    • Iterate through each character in the string and increment the count for each character

    • Use a hashmap to store the count of each character

    • Handle edge cases like empty string or null input

  • Answered by AI
  • Q4. UI test cases of Upload document
  • Ans. 

    UI test cases for uploading a document

    • Verify that the 'Upload' button is functional

    • Check if the correct file types are allowed for upload

    • Ensure that the progress bar is displayed during upload

    • Confirm that the document is successfully uploaded and visible on the UI

  • Answered by AI
  • Q5. UI test cases of a Form
  • Ans. 

    UI test cases for a Form

    • Verify all required fields are displayed

    • Test validation messages for invalid inputs

    • Check if form submission is successful

    • Test the functionality of reset button

  • Answered by AI
  • Q6. How to achieve parallel execution of test cases in testNG?
  • Ans. 

    Parallel execution of test cases in TestNG can be achieved using TestNG's parallel attribute in the testng.xml file.

    • Set the 'parallel' attribute in the testng.xml file to 'methods', 'classes', or 'tests' to specify the level of parallelism.

    • Use the 'thread-count' attribute to specify the number of threads to be used for parallel execution.

    • Ensure that the test classes are thread-safe to avoid any conflicts during paralle

  • Answered by AI
  • Q7. Write a program to reverse the words in a string I/P: My name is abc O/P: abc is name My
  • Ans. 

    Program to reverse words in a string

    • Split the input string into an array of words

    • Reverse the array of words

    • Join the reversed array back into a string

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. Write a program to reverse the string. I/P: I LOVE JAVA O/P: A VAJE VOLI
  • Q2. Regression vs Sanity
  • Ans. 

    Regression testing ensures existing functionality still works after changes, while sanity testing checks if new functionality works as expected.

    • Regression testing is performed to make sure that new code changes do not adversely affect existing functionality.

    • Sanity testing is a cursory testing to make sure that the new functionality is working as expected.

    • Regression testing is usually automated and covers a wide range o...

  • Answered by AI
  • Q3. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, tools, and processes used to automate 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.

    • Examples of automation frameworks include Selenium, TestNG, and Cucumber.

    • Frameworks can be data-driven, keyword-driven, or

  • Answered by AI
  • Q4. What are the reasons for 500 - Internal Server Error
  • Ans. 

    500 Internal Server Error is a generic error message indicating a problem with the server.

    • Server misconfiguration

    • Server overload

    • Programming errors in server-side code

    • Database connection issues

    • Insufficient server resources

  • Answered by AI
  • Q5. Submit button -> Click -> Blank page Identify the debug and find the root cause
  • Q6. Write test cases of an API that creates User's profile by accepting First name, Last name and mobile number
  • Ans. 

    Test cases for API creating User's profile with First name, Last name, and mobile number

    • Verify that a user profile is created successfully with valid First name, Last name, and mobile number

    • Test with invalid First name (empty, special characters, numbers)

    • Test with invalid Last name (empty, special characters, numbers)

    • Test with invalid mobile number (empty, alphabets, special characters, less than 10 digits)

    • Verify that ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bharti Airtel Sdet interview:
  • Appium
  • API
  • Java

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Selenium framework, exceptions, how to right click double click,
  • Q2. Rest assured, serialization , how to send POST request
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

The coding test just had 3 questions based on simple dsa

Interview Preparation Tips

Topics to prepare for Infosys BPM Senior Sdet Engineer interview:
  • DSA
  • Aptitude
Interview preparation tips for other job seekers - Just prepare dsa and aptitude basics
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Gasstation problem on letcode
  • Q2. LCS problem on leetcode
Round 2 - Coding Test 

Quick sort for numbers from 0 to million

Interview Preparation Tips

Interview preparation tips for other job seekers - LC easy should be fine

Sdet Interview Questions & Answers

Paytm user image Anonymous

posted on 30 Nov 2024

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

I was interviewed in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Strings anagram
  • Q2. Array sorting and remove duplicate

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for java and backend api testing
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Telephonic Call 

(2 Questions)

  • Q1. Roles and responsibilities
  • Q2. Skill set and tools
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Job Portal and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

SQL, Python - basics of SQL and how to populate values in a list using functions

ASDC Interview FAQs

How many rounds are there in ASDC Sdet Manager interview?
ASDC interview process usually has 1 rounds. The most common rounds in the ASDC interview process are HR.

Tell us how to improve this page.

ASDC Sdet Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
View all
Assistant Manager
4 salaries
unlock blur

₹3.6 L/yr - ₹12.1 L/yr

Microbiologist
4 salaries
unlock blur

₹4 L/yr - ₹4.3 L/yr

Senior Executive
4 salaries
unlock blur

₹3.3 L/yr - ₹4.3 L/yr

Asst Store
3 salaries
unlock blur

₹1.7 L/yr - ₹3 L/yr

Mines Manager
3 salaries
unlock blur

₹18 L/yr - ₹18 L/yr

Explore more salaries
Compare ASDC with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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