Upload Button Icon Add office photos

Filter interviews by

Auxo Polymers QA Manager Interview Questions and Answers

Updated 15 Mar 2024

Auxo Polymers QA Manager Interview Experiences

1 interview found

QA Manager Interview Questions & Answers

user image Anonymous

posted on 15 Mar 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. QA related questions

Interview Preparation Tips

Topics to prepare for Auxo Polymers QA Manager interview:
  • Plastic Molding
  • QMS
  • CAPA
  • QC

Interview questions from similar companies

QA Manager Interview Questions & Answers

Capgemini user image Akshaya Mahurkar

posted on 26 Jul 2024

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

(1 Question)

  • Q1. Explain ETL Architecture
  • Ans. 

    ETL Architecture refers to the process of extracting, transforming, and loading data from source systems to a data warehouse.

    • ETL involves extracting data from various sources such as databases, files, APIs, etc.

    • The extracted data is then transformed to meet the requirements of the target system or data warehouse.

    • Finally, the transformed data is loaded into the target system or data warehouse for analysis and reporting.

    • ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Managerial round mainly had conflict resolutions scenarios
  • Q2. Did not expect puzzles in manager rounds.
  • Q3. Problem solving and critical thinking were the main focus during managerial rounds

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare completely before going to each round. Even from tell me about yourself based on what they are looking for in each round.

I applied via Recruitment Consultant and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About experience, qa process, mitigation steps

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing much. Applied because I joined in jan as a TP. Want to get converted as a HCLite
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. What is BVA Testing?
  • Ans. 

    BVA Testing stands for Boundary Value Analysis Testing, a software testing technique to test the boundary values of input ranges.

    • BVA Testing is used to identify errors at the boundaries of input ranges.

    • It involves testing the minimum and maximum values, as well as just inside and just outside the boundaries.

    • For example, if a system accepts values from 1 to 10, BVA Testing would test values 0, 1, 10, and 11.

  • Answered by AI
  • Q2. High severity low priority
  • Q3. Test technics
  • Q4. Test methodologies
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Selenium Basic Question
  • Q2. Java oops concepts
  • Q3. Difference between iframe and window handling
  • Ans. 

    iframe is used to embed another HTML document within the current document, while window handling involves managing multiple browser windows or tabs.

    • iframe is used to display content from another source within the current webpage

    • Window handling involves managing multiple browser windows or tabs

    • iframe is used for embedding maps, videos, or other external content

    • Window handling is commonly used in automated testing to swi

  • Answered by AI
  • Q4. Exception in java
  • Ans. 

    An exception in Java is a runtime error that disrupts the normal flow of a program.

    • Exceptions are objects that are thrown when an error occurs during the execution of a program.

    • They can be caught and handled using try-catch blocks.

    • Common types of exceptions include NullPointerException, ArrayIndexOutOfBoundsException, and IOException.

  • Answered by AI
  • Q5. Git and jenkins

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What are the drawback for selenium
  • Ans. 

    Drawbacks of Selenium include limited support for non-web applications and challenges in handling dynamic web elements.

    • Limited support for non-web applications, such as desktop or mobile apps

    • Challenges in handling dynamic web elements, leading to flakiness in tests

    • Steep learning curve for beginners

    • Requires programming knowledge to create and maintain test scripts

    • Slower execution speed compared to other automation tools

  • Answered by AI
  • Q2. Multiple occurrence in a string
  • Ans. 

    Count the number of occurrences of a specific substring in a given string.

    • Use a loop to iterate through the string and check for the occurrence of the substring.

    • Use the indexOf method to find the position of the substring in the string.

    • Increment a counter each time the substring is found.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated QA QC Engineer with 5 years of experience in ensuring product quality and compliance with industry standards.

    • Experienced in conducting quality control inspections and audits

    • Skilled in developing and implementing quality assurance processes

    • Proficient in using testing tools and techniques to identify defects

    • Strong attention to detail and problem-solving skills

    • Excellent communication and teamwork abilitie

  • Answered by AI
  • Q2. What is selenium
  • Ans. 

    Selenium is a popular open-source automation testing tool used for web application testing.

    • Selenium is used for automating web browsers.

    • It supports multiple programming languages like Java, Python, C#, etc.

    • Selenium WebDriver is the most commonly used component for writing automation scripts.

    • Selenium Grid is used for parallel testing across different browsers and environments.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your experience
  • Q2. Why do you want to get this job
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Java Interview Question
  • Q2. How to reverse a string
  • Ans. 

    To reverse a string, iterate through the string from end to start and append each character to a new string.

    • Iterate through the string from end to start

    • Append each character to a new string

    • Return the reversed string

  • Answered by AI
  • Q3. How to find a Duplicate from a string
  • Ans. 

    Use a hash set to find duplicates in a string array.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate.

    • Example: ['apple', 'banana', 'apple'] -> 'apple' is a duplicate.

  • Answered by AI
  • Q4. How to check an integer is palindrome or not
  • Ans. 

    To check if an integer is a palindrome, reverse the integer and compare it with the original integer.

    • Convert the integer to a string to easily reverse it

    • Reverse the string and compare it with the original string

    • If they are the same, the integer is a palindrome

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good in Java

Skills evaluated in this interview

QA QC Engineer Interview Questions & Answers

IBM user image kirankumar sahu

posted on 24 Jan 2024

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 Dec 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Describe the challenging situation in the work time

Auxo Polymers Interview FAQs

How many rounds are there in Auxo Polymers QA Manager interview?
Auxo Polymers interview process usually has 1 rounds. The most common rounds in the Auxo Polymers interview process are Technical.

Tell us how to improve this page.

People are getting interviews through

based on 1 Auxo Polymers interview
Referral
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.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Production Manager
4 salaries
unlock blur

₹2.4 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Auxo Polymers with

Reliance Industries

4.0
Compare

Tata Chemicals

4.1
Compare

Grasim Industries

4.0
Compare

Haldia Petrochemicals

3.8
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