Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by PTC Team. If you also belong to the team, you can get access from here

PTC Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

PTC QA Technical Lead Interview Questions and Answers

Updated 13 Feb 2024

PTC QA Technical Lead Interview Experiences

1 interview found

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 Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java coding , Framework knowledge,
Round 2 - One-on-one 

(1 Question)

  • Q1. I can't remember

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

It was some sorting question - 1 Hour JAVA

Round 2 - Technical 

(2 Questions)

  • Q1. Some selenium and java based question
  • Q2. How would kill the child process
  • Ans. 

    Use the kill command with the child process ID to terminate it

    • Find the child process ID using tools like ps or pgrep

    • Use the kill command with the appropriate signal (e.g. SIGTERM, SIGKILL) and the child process ID

    • Example: kill -9

Answered by AI

Skills evaluated in this interview

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

Aptitude test was easy to clear

Round 2 - Coding Test 

Coding test was ok to clear

Round 3 - Technical 

(1 Question)

  • Q1. Technical was easy to medium
Round 4 - HR 

(1 Question)

  • Q1. Tell me about your self
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 Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the challenges faced in Test Automation
  • Ans. 

    Challenges in Test Automation include dynamic UI elements, maintenance of scripts, data management, and flakiness.

    • Dynamic UI elements can cause scripts to fail if not handled properly

    • Maintenance of scripts can be time-consuming as applications evolve

    • Data management is crucial for test data setup and cleanup

    • Flakiness of tests can lead to false positives or negatives

  • Answered by AI
  • Q2. What are the top 3 defects that you have raised in your previous project or role.

Interview Preparation Tips

Topics to prepare for Amadeus QA Automation Engineer interview:
  • Functional Testing
  • Python
  • Selenium
  • Pytest
Interview preparation tips for other job seekers - Interview was on the easier side but there was no co-operation or friednliness in the interview it was more like one sided question and answer.

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is the STLC, bug severity priority, waits in selenium with syntax, Java oops question with example,
  • Ans. 

    STLC, bug severity priority, waits in Selenium, Java OOPs

    • STLC stands for Software Testing Life Cycle and includes phases like requirement analysis, test planning, test design, test execution, and test closure

    • Bug severity is the impact of a bug on the system, while bug priority is the order in which bugs should be fixed

    • Waits in Selenium are used to make the test script wait for a certain condition to be met before proce...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Oct 2023.

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 

(3 Questions)

  • Q1. What is tdd in it
  • Ans. 

    TDD stands for Test-Driven Development, a software development process where tests are written before the code.

    • Tests are written before the actual code implementation

    • Code is then written to pass the tests

    • Helps in ensuring code quality and functionality

    • Promotes writing modular and testable code

  • Answered by AI
  • Q2. What is class inheritance
  • Ans. 

    Class inheritance is a concept in object-oriented programming where a class inherits attributes and methods from another class.

    • Allows a class to inherit properties and behaviors from another class

    • Promotes code reusability and reduces redundancy

    • Derived class can add new features or override existing ones

    • Example: Class 'Car' can inherit from class 'Vehicle' and inherit properties like 'color' and methods like 'drive'

  • Answered by AI
  • Q3. Why pytest fixtures are used
  • Ans. 

    Pytest fixtures are used to set up preconditions for tests, share resources, and reduce code duplication.

    • Fixtures help in setting up preconditions for tests, such as creating test data or initializing objects.

    • They allow for sharing resources across multiple tests, reducing code duplication.

    • Fixtures can be used to simulate real-world scenarios, like setting up a database connection or mocking external services.

    • They prov...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic manual testing questions
  • Q2. API testing questions,write scenarios for login page

QA Lead Interview Questions & Answers

UKG user image Anonymous

posted on 28 Nov 2023

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

I was interviewed in May 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Testng priority and annotations
  • Q2. Multiple inheritance
  • Q3. Hashing concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Work culture not good
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Questions on whole QA Testing, Windows
  • Q2. Types of testing
  • Ans. 

    Types of testing include functional testing, non-functional testing, manual testing, automated testing, regression testing, and performance testing.

    • Functional testing: Testing the functionality of the software against the requirements.

    • Non-functional testing: Testing aspects like performance, usability, and security.

    • Manual testing: Testing performed manually by QA engineers.

    • Automated testing: Testing performed using aut...

  • Answered by AI
  • Q3. How to test a particular scenario
  • Ans. 

    To test a particular scenario, create test cases covering all possible inputs and expected outcomes.

    • Identify the specific scenario to be tested

    • Create test cases for different inputs and expected outcomes

    • Execute the test cases and analyze the results

    • Perform regression testing to ensure no new issues are introduced

  • Answered by AI
  • Q4. Bugs validation
Round 2 - Coding Test 

Simple coding on python

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Oops concepts is mandatory
  • Q2. Print only duplicate values from a String Without using for loop, use do-while
  • Ans. 

    Print duplicate values from a String using do-while loop

    • Create a HashSet to store unique values

    • Use a do-while loop to iterate through the String

    • Check if the HashSet already contains the current character, if yes, print it as a duplicate

  • Answered by AI
  • Q3. Core Java oops concepts
Round 3 - Technical 

(3 Questions)

  • Q1. Reverse a string= "Ecommerce"
  • Ans. 

    To reverse a string 'Ecommerce', you can iterate through the characters in the string and build a new string in reverse order.

    • Iterate through the characters of the string from end to start

    • Append each character to a new string to build the reversed string

    • Return the reversed string as the result

  • Answered by AI
  • Q2. Print only duplicate values from a string
  • Ans. 

    Print duplicate values from a string as an array of strings

    • Iterate through each character in the string

    • Use a hashmap to store the frequency of each character

    • Print characters with frequency greater than 1 as duplicates

  • Answered by AI
  • Q3. Selenium web driver related, Open amazon or Facebook website, u need to find the xpath for dates or dropdowns, and using contains

PTC Interview FAQs

How many rounds are there in PTC QA Technical Lead interview?
PTC interview process usually has 2 rounds. The most common rounds in the PTC interview process are Technical and One-on-one Round.
How to prepare for PTC QA Technical Lead interview?
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 PTC. The most common topics and skills that interviewers at PTC expect are Manual Testing, Software Quality Assurance, Automation Testing, Agile and Automation Tools.
What are the top questions asked in PTC QA Technical Lead interview?

Some of the top questions asked at the PTC QA Technical Lead interview -

  1. Java coding , Framework knowled...read more
  2. I can't remem...read more

Tell us how to improve this page.

PTC QA Technical Lead Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 431 Interviews
Bosch Interview Questions
4.2
 • 334 Interviews
Johnson Controls Interview Questions
3.5
 • 261 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
ABB Interview Questions
4.1
 • 232 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
VMware Software Interview Questions
4.4
 • 158 Interviews
View all
PTC QA Technical Lead Salary
based on 53 salaries
₹11.4 L/yr - ₹23 L/yr
6% more than the average QA Technical Lead Salary in India
View more details

PTC QA Technical Lead Reviews and Ratings

based on 7 reviews

3.9/5

Rating in categories

3.7

Skill development

4.5

Work-life balance

3.8

Salary

3.9

Job security

3.3

Company culture

2.9

Promotions

3.9

Work satisfaction

Explore 7 Reviews and Ratings
Software Specialist
159 salaries
unlock blur

₹7.5 L/yr - ₹18.2 L/yr

Senior Software Specialist
121 salaries
unlock blur

₹9.1 L/yr - ₹23.5 L/yr

Technical Lead
107 salaries
unlock blur

₹10.9 L/yr - ₹29 L/yr

QA Specialist
81 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Product Specialist
77 salaries
unlock blur

₹7.5 L/yr - ₹13 L/yr

Explore more salaries
Compare PTC with

Autodesk

4.2
Compare

Siemens

4.1
Compare

Bosch

4.2
Compare

ABB

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