Upload Button Icon Add office photos
Engaged 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
4.2

based on 485 Reviews

Filter interviews by

PTC Java Developer Interview Questions and Answers

Updated 10 May 2024

PTC Java Developer Interview Experiences

2 interviews found

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. The interviewer asked me mostly about basics of java like, OOPs concept, Stringpool, Hashmap, features of Java 8, I have to write syntax to Hashmap using stream API
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Pimpri Chinchwad College of Engineering, Pimpri and was interviewed in Apr 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 tips
Round 2 - Aptitude Test 

Test was simple basic coding questions

Round 3 - Coding Test 

Codes were also easy to medium level

Round 4 - Technical 

(1 Question)

  • Q1. All fundamentals of OOPS, SQL, basic DSA Web dev Qs Internship related Qs and Project based Totally resume based

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume well and be clear with technical fundamentals

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 1You have been given an integer array/list(ARR) of size N ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in LTIMindtree
Q3. Longest Harmonious SubsequenceYou are given an array ‘ARR’ of 'N' ... read more
asked in Deloitte
Q4. Convert Bst To The Greater Sum TreeYou have been given a Binary S ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Java Developer Jobs at PTC

View all

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic DSA questions like binary search, pattern
  • Q2. Basic SQL query questions

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the worst company I have given interview,
The HR named Shubha A contacted me a day before interview that are you available for interview, I told yes.

After that interview has been scheduled, with interviewer soumyashree rout , I have given all the answers which she asked for and what did I get an acquisition of cheating in interview, I even showed her my surroundings that I am not cheating, and how come such dumb people are allowed to interview. Really waste of time and effort.

Please don't go for interview for this company you will find better opportunities like I did , offered a position at a product based company better than this.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. About project of previous company
  • Q2. Check palindrome and odd of given number
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Goals for the future
  • Ans. 

    To become a senior Java developer and contribute to innovative projects in a collaborative team environment.

    • Continue learning new technologies and best practices in Java development

    • Work on challenging projects to enhance problem-solving skills

    • Collaborate with team members to share knowledge and improve code quality

  • Answered by AI
  • Q2. How do you think you can impact our company
  • Ans. 

    I believe my strong Java skills and problem-solving abilities can positively impact the company by improving efficiency and developing innovative solutions.

    • I have experience in developing efficient and scalable Java applications, which can help streamline processes within the company.

    • I am skilled in identifying and solving complex technical issues, which can contribute to the overall success of projects.

    • I am proactive ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Try, catch, finally...
  • Q2. HTTP families (400,200,500)
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 Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Dsa question, I don’t remember
  • Q2. Check if the sentence is palindrome or not
  • Ans. 

    To check if a sentence is a palindrome, compare it with its reverse form.

    • Remove all non-alphanumeric characters and convert the sentence to lowercase.

    • Reverse the sentence and compare it with the original sentence to check for palindrome.

    • Example: 'A man, a plan, a canal, Panama' becomes 'amanaplanacanalpanama' after removing non-alphanumeric characters and converting to lowercase.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Discussion was on Binary tree and tree traversal. Asked me to write binary tree complete program to insert amd traversal of binary tree with few changes on how to insert.
  • Q2. In depth discussion on my experience my projects.

Interview Preparation Tips

Topics to prepare for ServiceNow Java Developer interview:
  • Dsa and core java, System design
Interview preparation tips for other job seekers - Overall my both rounds went really good but after the second round, I followed with hr for 2 weeks to get the update initially she said she will schedule 3 rd round later she said I am not selected.
Overall my experience wasn’t great.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Java, sql ,springboot
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not 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:
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 - Coding Test 

Reverse string code and reverse array code

Round 3 - Technical 

(5 Questions)

  • Q1. Basic of java, pillar of oops, collection, exception handling etc.
  • Q2. What isinheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

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

  • Answered by AI
  • Q3. What is encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for better control over the data by preventing direct modification from outside the class.

    • Access to the data is provided through methods, which can enforce validation rules and ensure data integrity.

    • Ex...

  • Answered by AI
  • Q4. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Animal superclass with Dog and Cat subclasses. Both Dog and Cat can be treated as Animals.

  • Answered by AI
  • Q5. What is abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary features to the user.

    • Abstraction allows developers to focus on what an object does rather than how it does it

    • It helps in reducing complexity and improving code readability

    • Example: In Java, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Mar 2023. There were 3 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 - Voice Processing -English check 

(1 Question)

  • Q1. Easy Questions - Oops Concept . real life examples Abstract Class Inheritance difference Final vs immutable Spring Concepts - dependency injection,about @autowired
Round 3 - Technical 

(1 Question)

  • Q1. English Test - Speaking Fluent Eglish
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops ,sql,MySQL, written test

PTC Interview FAQs

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

Some of the top questions asked at the PTC Java Developer interview -

  1. The interviewer asked me mostly about basics of java like, OOPs concept, String...read more
  2. All fundamentals of OOPS, SQL, basic DSA Web dev Qs Internship related Qs and P...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 PTC interviews
Job Portal
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
PTC Java Developer Salary
based on 6 salaries
₹7.2 L/yr - ₹9 L/yr
43% more than the average Java Developer Salary in India
View more details

PTC Java Developer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.5

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

3.1

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 2 Reviews and Ratings
Java Developer

Gurgaon / Gurugram

2-5 Yrs

Not Disclosed

Explore more jobs
Software Specialist
148 salaries
unlock blur

₹7.5 L/yr - ₹20 L/yr

Senior Software Specialist
111 salaries
unlock blur

₹9.1 L/yr - ₹23.5 L/yr

Technical Lead
110 salaries
unlock blur

₹10 L/yr - ₹28.5 L/yr

QA Specialist
82 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Product Specialist
75 salaries
unlock blur

₹7.5 L/yr - ₹13 L/yr

Explore more salaries
Compare PTC with

Autodesk

4.3
Compare

Siemens

4.1
Compare

Bosch

4.2
Compare

ABB

4.1
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