Upload Button Icon Add office photos

Filter interviews by

Cell Propulsion QA QC Engineer Interview Questions and Answers for Experienced

Updated 21 Dec 2023

Cell Propulsion QA QC Engineer Interview Experiences for Experienced

1 interview found

I applied via Referral and was interviewed in Dec 2021. 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 

(1 Question)

  • Q1. Basic Questions based on CV
Round 3 - One-on-one 

(1 Question)

  • Q1. Background and CTC

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't add unnecessary input to your CV

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Automation, Manual Testing, Payment Gateway

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

I applied via Referral and was interviewed before May 2021. 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 - Technical 

(1 Question)

  • Q1. Car inspection technical question
  • Ans. Ways to know if car is accidental
  • Answered by Siddesh Shamsundar Navelkar

Interview Preparation Tips

Interview preparation tips for other job seekers - I advice be frank in your job interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Smog Testing
  • Ans. 

    Smog testing is a process to measure the amount of pollutants emitted by vehicles to ensure they meet environmental standards.

    • Smog testing is also known as emissions testing or vehicle inspection.

    • It is typically required by law to ensure vehicles are not emitting excessive pollutants into the air.

    • The testing process usually involves measuring the levels of pollutants such as carbon monoxide, hydrocarbons, and nitrogen ...

  • Answered by AI
  • Q2. What is SDLC lifecycle
  • Ans. 

    SDLC lifecycle is the process of planning, creating, testing, and deploying software.

    • SDLC stands for Software Development Life Cycle

    • It includes phases like planning, analysis, design, implementation, testing, and maintenance

    • Each phase has specific goals and deliverables

    • Examples of SDLC models include Waterfall, Agile, and DevOps

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Given was a case study of lift, need to make test cases regarding that.
Round 3 - HR 

(1 Question)

  • Q1. What is your marital status, family and current job.
  • Ans. 

    Married with two children, currently working as a QA Engineer.

    • Married with two children

    • Currently working as a QA Engineer

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How do you perform regression testing in complex feature
  • Ans. 

    Regression testing in complex features involves identifying critical test cases, automating tests, and executing them regularly.

    • Identify critical test cases that cover the main functionalities of the complex feature

    • Automate these test cases to ensure efficient and consistent testing

    • Execute regression tests regularly to catch any potential issues or regressions

    • Use tools like Selenium, JUnit, or TestNG for automation and...

  • 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 Walk-in and was interviewed in Nov 2023. 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 - Aptitude Test 

Maths and science reasoning gk, current affairs

Round 3 - Coding Test 

Coding test questions ask to me

Interview Preparation Tips

Interview preparation tips for other job seekers - The greatest glory in living lies not in never falling, but in rising every time we fall.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(7 Questions)

  • Q1. Write an SQL query to find the 2nd largest salary
  • Ans. 

    SQL query to find the 2nd largest salary

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to get the second row

  • Answered by AI
  • Q2. Write test cases of Login API
  • Ans. 

    Test cases for Login API

    • Verify valid credentials login successfully

    • Verify invalid credentials show error message

    • Verify login with empty username or password

    • Verify login with special characters in username or password

    • Verify login with long username or password

  • Answered by AI
  • Q3. In Jmeter, what is Rampup period
  • Ans. 

    Rampup period in JMeter is the time taken for all virtual users to start executing the test plan.

    • Rampup period is specified in seconds in JMeter test plan settings.

    • During the rampup period, JMeter gradually starts all virtual users to avoid overwhelming the server.

    • For example, if rampup period is set to 60 seconds and number of threads is 100, JMeter will start 1 thread every 0.6 seconds.

  • Answered by AI
  • Q4. Difference between cookie and cache
  • Ans. 

    Cookies are small pieces of data stored on the client side, while cache is temporary storage of web documents on the server or client side.

    • Cookies are used to store user-specific information like login credentials, preferences, etc.

    • Cache is used to store frequently accessed web documents to reduce loading times.

    • Cookies are sent with every HTTP request, while cache is used to store resources locally to reduce server loa...

  • Answered by AI
  • Q5. API vs Webservice
  • Ans. 

    API is a general term for any set of rules that allow different software applications to communicate with each other. A web service is a type of API that is accessed over a network.

    • API is a set of rules and protocols that allow different software applications to communicate with each other.

    • Web service is a type of API that is accessed over a network, typically using HTTP.

    • API can be used for various purposes like access...

  • Answered by AI
  • Q6. Write a program to find a prime number
  • Ans. 

    Program to find a prime number

    • Iterate through numbers starting from 2 up to the given number

    • Check if the number is divisible by any number other than 1 and itself

    • If not divisible, then it is a prime number

  • Answered by AI
  • Q7. Write a program to find the factorial
  • Ans. 

    Program to find the factorial of a number

    • Use a loop to multiply numbers from 1 to the given number

    • Handle edge cases like 0 and negative numbers

    • Example: For input 5, factorial is 5*4*3*2*1 = 120

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic question of API
  • Q2. BE testing questions
Round 2 - HR 

(2 Questions)

  • Q1. Sallary discussion
  • Q2. Notice period discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 coding questions were provided

Round 2 - Assignment 

Backend Code of a class booking web app

Round 3 - Technical 

(2 Questions)

  • Q1. Discussed the assignment and improved the app
  • Q2. Asked some resume projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. What's is your name?
  • Ans. 

    My name is John Smith.

    • Full name is John Smith

    • Common name

    • Easy to remember

  • Answered by AI
  • Q2. What is your salary ?
  • Ans. 

    My salary is competitive and based on my experience, qualifications, and the industry standards.

    • My salary is based on my experience in the field of inspection engineering.

    • It also takes into account my qualifications and certifications related to inspection engineering.

    • My salary is in line with industry standards for inspection engineers.

    • I am open to discussing salary further during the negotiation process.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Re inspection

Cell Propulsion Interview FAQs

How many rounds are there in Cell Propulsion QA QC Engineer interview for experienced candidates?
Cell Propulsion interview process for experienced candidates usually has 3 rounds. The most common rounds in the Cell Propulsion interview process for experienced candidates are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Cell Propulsion QA QC Engineer interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cell Propulsion. The most common topics and skills that interviewers at Cell Propulsion expect are Automotive, CRM, MS Office, PDF and Production Engineering.
What are the top questions asked in Cell Propulsion QA QC Engineer interview for experienced candidates?

Some of the top questions asked at the Cell Propulsion QA QC Engineer interview for experienced candidates -

  1. Basic Questions based on...read more
  2. Background and ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 441 Interviews
CARS24 Interview Questions
3.5
 • 338 Interviews
Udaan Interview Questions
3.9
 • 338 Interviews
Meesho Interview Questions
3.7
 • 338 Interviews
Zepto Interview Questions
3.5
 • 254 Interviews
BlackBuck Interview Questions
3.8
 • 182 Interviews
Tata 1mg Interview Questions
3.6
 • 159 Interviews
AmbitionBox Interview Questions
4.9
 • 154 Interviews
Digit Insurance Interview Questions
3.9
 • 148 Interviews
Paisabazaar.com Interview Questions
3.4
 • 144 Interviews
View all
Cell Propulsion QA QC Engineer Salary
based on 5 salaries
₹3.6 L/yr - ₹5.5 L/yr
27% less than the average QA QC Engineer Salary in India
View more details

Cell Propulsion QA QC Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

4.5

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Junior Engineer
5 salaries
unlock blur

₹3 L/yr - ₹3.2 L/yr

QA QC Engineer
5 salaries
unlock blur

₹3.6 L/yr - ₹5.5 L/yr

Engineer
4 salaries
unlock blur

₹4.2 L/yr - ₹7 L/yr

Service Engineer
4 salaries
unlock blur

₹4.3 L/yr - ₹7.6 L/yr

Mechanical Engineer
4 salaries
unlock blur

₹2 L/yr - ₹6.2 L/yr

Explore more salaries
Compare Cell Propulsion with

Udaan

3.9
Compare

Swiggy

3.8
Compare

CARS24

3.5
Compare

BlackBuck

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