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 Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top PTC Interview Questions and Answers

View all 38 questions

PTC Interview Experiences

Popular Designations

62 interviews found

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

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

Round 1 - Coding Test 

Nice and difficult work from home

Round 2 - Technical 

(2 Questions)

  • Q1. Array and haah was aaked
  • Q2. It was difficult

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice pic of you

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Implement singleton in C++
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to a single object.

    • Use a private static member variable to hold the single instance of the class.

    • Make the constructor private to prevent direct instantiation of the class.

    • Provide a static method that returns the single instance of the class.

    • Ensure thread safety if the singleton needs to be accessed concurrently.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Java and software development concepts

Skills evaluated in this interview

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)
PTC Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Diff between queryparam n pathparam
  • Ans. 

    Queryparam is used to pass parameters in the URL query string, while pathparam is used to pass parameters in the URL path.

    • Queryparam is appended to the end of the URL after a '?' symbol, while pathparam is included in the URL path itself.

    • Queryparam is optional and can be used for filtering or sorting data, while pathparam is required for identifying a specific resource.

    • Example of queryparam: /api/users?name=John&age=30

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do logical quetions more

Skills evaluated in this interview

Senior Software Specialist Interview Questions asked at other Companies

Q1. how to troubleshoot on outbound call issue
View answer (1)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2023

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. 1. Formal Introduction 2. Day to Day activities in your previous organization. 3. Framwork and it's type 4. Basic architecture of Data Driven Framework. 5. What is Azure and what roles and responsibilities...
  • Q2. Mostly questions were from Azure, Cloud and Git.
  • Q3. Explanation on any Framework
  • Ans. 

    A framework is a set of guidelines or rules that provide structure and support for developing software applications.

    • Frameworks help in organizing code and promoting best practices

    • They provide reusable components and modules to speed up development

    • Frameworks can be front-end (like React or Angular) or back-end (like Spring or Django)

  • Answered by AI
  • Q4. Oops Concepts and explain it in detail
  • Ans. 

    Oops Concepts are fundamental principles of object-oriented programming that help in organizing and designing code.

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

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

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

    • Abstraction: Hiding the complex implementation details and sh...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly they focused on my communication skills and I was an Immediate Joiner so i got the advantage.

Skills evaluated in this interview

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

PTC interview questions for popular designations

 Intern

 (7)

 QA Engineer

 (5)

 Software Developer

 (3)

 Software Specialist

 (2)

 Technical Lead

 (2)

 Software Engineer

 (2)

 Senior Software Developer

 (2)

 Software Analyst

 (2)

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

I applied via Approached by Company and was interviewed in Jan 2023. There were 4 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 Resume tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. You have a birthday cake. You need to divide it in 8 equal parts, but you can cut it only 3 times. How will you do it?
  • Q2. There are 4 people on one side of the river, let them be A, B, C and D. There is a boat on the same side of the river. A takes 1 minute to row to the other side, B takes 2 minutes, C takes 9 minutes and D ...
  • Q3. Two people, A and B, are running on a circular track. Both start at the same position. A is running at a speed of "x" and B is running at a speed of "y" (x is not equal to y). At what distance will they me...
  • Ans. 

    They will meet again after the starting point at a distance of LCM(x, y).

    • The distance at which they will meet again is the least common multiple (LCM) of their speeds.

    • For example, if A is running at a speed of 4 m/s and B is running at a speed of 6 m/s, they will meet again after 12 meters.

    • Another example, if A is running at a speed of 3 km/hr and B is running at a speed of 5 km/hr, they will meet again after 15 km.

  • Answered by AI
  • Q4. There are three wires of same length. First is crafted into a circle, second is crafted into an equilateral triangle and third is crafted into a square. Which one will have the minimum area?
Round 3 - Technical 

(3 Questions)

  • Q1. Program for Fibonacci Series.
  • Ans. 

    A program to generate Fibonacci series using iterative or recursive approach.

    • Iterative approach: Use a loop to generate Fibonacci numbers by adding the previous two numbers.

    • Recursive approach: Define a function that calls itself to generate Fibonacci numbers.

    • Example: Fibonacci series up to 10 - 0, 1, 1, 2, 3, 5, 8, 13, 21, 34

  • Answered by AI
  • Q2. Program to find if a number is prime or not.
  • Ans. 

    A program to determine if a given number is prime or not.

    • Check if the number is less than 2, if so it is not prime

    • Iterate from 2 to the square root of the number and check for divisibility

    • If the number is divisible by any number other than 1 and itself, it is not prime

    • If no divisors are found, the number is prime

  • Answered by AI
  • Q3. Swapping two numbers using different techniques. All possible test cases and where one can go wrong.
  • Ans. 

    Swapping two numbers using different techniques and discussing possible test cases and errors.

    • Using a temporary variable to swap the numbers

    • Using arithmetic operations to swap the numbers

    • Using bitwise XOR operation to swap the numbers

    • Test cases: positive numbers, negative numbers, zero, large numbers, floating point numbers

    • Possible errors: not using a temporary variable correctly, overflow/underflow with arithmetic ope

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. My introduction and my accomplishments.
  • Q2. How much was my understanding about PTC core values.
  • Ans. 

    I have a strong understanding of PTC core values.

    • PTC core values include customer success, innovation, integrity, and teamwork.

    • I have demonstrated my understanding of these values through my work on projects that prioritize customer satisfaction and collaboration.

    • I have also shown my commitment to integrity by always following ethical guidelines in my work.

    • I stay updated on industry trends and technologies to contribut

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - Have a grasp of technologies for which you are applying for.
- Go through PTC's core values and try to mold your answers that showcase those values in yourself. (You should do this for any company you apply).
- Be confident but not over confident in your answers. Go through puzzle videos on youtube as much as you can.

Skills evaluated in this interview

Top PTC Software Analyst Interview Questions and Answers

Q1. There are 4 people on one side of the river, let them be A, B, C and D. There is a boat on the same side of the river. A takes 1 minute to row to the other side, B takes 2 minutes, C takes 9 minutes and D takes 10 minutes. Only two people c... read more
View answer (3)

Software Analyst Interview Questions asked at other Companies

Q1. DFS Traversal Problem Statement Given an undirected and disconnected graph G(V, E), where V is the number of vertices and E is the number of edges, the connections between vertices are provided in the 'GRAPH' matrix. Each element of the mat... read more
View answer (1)

Get interview-ready with Top PTC Interview Questions

Intern Interview Questions & Answers

user image Anonymous

posted on 2 May 2024

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

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

Round 1 - Aptitude Test 

The duration of the test is total 3 hour and there are total 50 questions camara and mic is always on please dont switch the window durinf the test

Interview Preparation Tips

Interview preparation tips for other job seekers - please reffer a aptitude book

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Jobs at PTC

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

(1 Question)

  • Q1. IT Audit, ITGC, SOX
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Aug 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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. Introduction and place of work
  • Q2. Why you join our company
Round 3 - Technical 

(2 Questions)

  • Q1. All from resume
  • Q2. My research related things

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare ur resume

Energy Engineer Interview Questions asked at other Companies

Q1. You know about modelling software
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Collection, LinkedList, Map, Basic java Questions, Interface
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions, Managerial question, why you are switching

Software Specialist Interview Questions asked at other Companies

Q1. Do you know the architecture of McAfee and CrowedStrike? Did you work on the CrowedStrike console and service now?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Mar 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 Resume tips
Round 2 - Coding Test 

Question 1
----------------
Input array - 2,9,3,6,5,4

Output array - 9,6,5,4

The result array returns the elements which are greater than all the right side elements

Input array -3,5,1,2,4

Output - 5,4

Question 2
----------------
Check whether two strings are anagram or not?

Question 3
-----------------
Make an employee class and retrieve 100 random employees with unique IDs.

Round 3 - Technical 

(2 Questions)

  • Q1. 1. API security 2. More details about project
  • Q2. 3. Employee class and address class

Senior Java Developer Interview Questions asked at other Companies

Q1. Remove the Kth Node from the End of a Linked List You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Linked List. Input: The first line of ... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

PTC Interview FAQs

How many rounds are there in PTC interview?
PTC interview process usually has 2-3 rounds. The most common rounds in the PTC interview process are Technical, Resume Shortlist and HR.
How to prepare for PTC 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 Java, Javascript, Agile, SQL and Linux.
What are the top questions asked in PTC interview?

Some of the top questions asked at the PTC interview -

  1. A ball is left from a height of 10 meters. After bouncing first time it looses ...read more
  2. There are 4 people on one side of the river, let them be A, B, C and D. There i...read more
  3. Which is the best and less time consuming way to calculate factorial of a numbe...read more
How long is the PTC interview process?

The duration of PTC interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

PTC

No Jobs

JOBS

PTC

No Jobs

INTERVIEWS

PTC

No Interviews

SALARIES

PTC

SALARIES

Medline Industries

No Salaries

SALARIES

PTC

LIST OF COMPANIES

Medline Industries

Overview

LIST OF COMPANIES

PTC

Overview

Tell us how to improve this page.

PTC Interview Process

based on 62 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 417 Interviews
Bosch Interview Questions
4.2
 • 330 Interviews
Johnson Controls Interview Questions
3.5
 • 261 Interviews
ABB Interview Questions
4.1
 • 234 Interviews
Danaher Interview Questions
4.0
 • 9 Interviews
View all

PTC Reviews and Ratings

based on 512 reviews

4.2/5

Rating in categories

3.8

Skill development

4.3

Work-life balance

3.9

Salary

4.0

Job security

4.2

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 512 Reviews and Ratings
Manager - Treasury

Delhi/Ncr

4-8 Yrs

Not Disclosed

Software Specialist

Gurgaon / Gurugram

2-5 Yrs

Not Disclosed

QA Specialist

Pune

2-5 Yrs

Not Disclosed

Explore more jobs
Software Specialist
160 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Specialist
121 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
107 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Specialist
81 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Specialist
77 salaries
unlock blur

₹0 L/yr - ₹0 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