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 Associate Software Analyst Interview Questions and Answers

Updated 22 Jul 2024

PTC Associate Software Analyst Interview Experiences

1 interview found

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

Code snippets, MCQ questions

Round 2 - Technical 

(2 Questions)

  • Q1. Technical Round
  • Q2. Java, OOP, SQL , Collection , Recursion, Stack/Queue
Round 3 - HR 

(1 Question)

  • Q1. Formal HR round

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java, streams,coding

Interview Preparation Tips

Interview preparation tips for other job seekers - poor standards of interview, initially asked couple byhearted interview questions,
and then came reverse a LinkedList question, so i took couple minutes and presented solution, initially he didn't say anything, and then he said my solution is wrong, so i went through the code and an example as well, still not able find the flaw, then he said conditions while loop is not right, again i thoroughly checked not able find error, i asked why it is wrong and tried explained my code as well, but he is not trying understand and conducting interview as if interrogation and not uttering a word as if he revealing something, in-between he is saying its simple question, and he is typing something, seeing and comparing, finally i said ok, i don't know and assume i am wrong lets move next question, as i am losing time, he did similar stuff following questions, later i checked in google and finally realized that he is checking geekforgeeks code and comparing my code, first of all a question can have multiple solutions and later run my code it works the same, but he comparing loop to loop and variable to variable, saying my code is wrong, i tried to explain he does not even understand how to reverse linked list and saying very easy question and treating like interrogation, so disappointed.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via LinkedIn and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Large scale system design interview
Round 2 - Coding Test 

Two DSA questions related to Arrays & strings

Round 3 - One-on-one 

(1 Question)

  • Q1. Design URL shortener
  • Ans. 

    Design a URL shortener service with features like shortening, redirecting, tracking, handling collisions, and providing analytics.

    • Use a hashing algorithm to generate unique short URLs from long URLs

    • Store mappings of short URLs to original URLs in a database

    • Implement a redirect mechanism to direct users to the original URL when accessing the short URL

    • Track the number of times each short URL is accessed and store this da...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. SOLID Principles
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Karet Interview :
5 back to back System design question, we don't need to explain each component but more like list as many as points. Need to finish all the question in 15min

1-2 problem solving question : It's not fency algorithm round with tough question. But true problem solving round using basic knowledge such as hashmap, heap

Round 2 - Technical 

(3 Questions)

  • Q1. Design File System : You have given file size and collection in input 1 : get total size 2 : find top k collections in size
  • Ans. 

    Design a file system to calculate total size and find top k collections in size.

    • Create a file system class with methods to add files and calculate total size.

    • Maintain a data structure to store the collections and their sizes.

    • Implement a method to find the top k collections based on size.

    • Consider using a priority queue or sorting the collections based on size.

    • Handle edge cases like empty collections or invalid input siz

  • Answered by AI
  • Q2. Find total size
  • Ans. 

    Calculate the total size of an array of strings.

    • Iterate through the array and sum the length of each string.

    • Use the `length` property of each string to get its size.

    • Handle edge cases such as empty strings or null values.

  • Answered by AI
  • Q3. Find Top k collections
  • Ans. 

    The question is asking to find the top k collections.

    • Use a sorting algorithm to sort the collections in descending order based on a specific criteria.

    • Select the top k collections from the sorted list.

    • Return the selected collections as an array of strings.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Project details question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 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 

(1 Question)

  • Q1. Technical interview includes questions in dotnet core, C# , angular and SQL. It includes questions like middleware,startup.cs file configuration, dependency injection,cors and char frequency counter progra...
Round 3 - Technical 

(1 Question)

  • Q1. In this round we had discussion regarding previous company project and ReactJS including concepts like life cycle , hooks and state management. It also includes scenario based questions related to team man...
Round 4 - HR 

(1 Question)

  • Q1. Mostly about yourself and salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

2 Coding questions, 1 SQL and a few MCQs.

Round 2 - Technical 

(2 Questions)

  • Q1. Given a String find the lexicographically lowest substring containing k number of 1s
  • Ans. 

    Find the lexicographically lowest substring with k 1s in a given string.

    • Iterate through the string and maintain a sliding window of size k.

    • Keep track of the count of 1s in the window and update the result if a valid substring is found.

    • Return the lexicographically lowest substring with k 1s.

  • Answered by AI
  • Q2. Given to solve SQL Questions based on Join and group by.
Round 3 - Technical 

(5 Questions)

  • Q1. Technical Discussion
  • Q2. Questions based on operating Systema and OOPs
  • Q3. Difference between Abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a contract for cl...

  • Answered by AI
  • Q4. Process Synchronisation
  • Q5. Was asked what project would I take up if I get funded and list the challenges of taking up the project.
Round 4 - HR 

(1 Question)

  • Q1. Just Basic HR Questions

Interview Preparation Tips

Topics to prepare for Akamai Technologies Software Engineer interview:
  • DSA
  • Operating Systems
  • OOPs
  • Computer Newtworks
  • Distributive Systems
  • System Design
  • SQL
Interview preparation tips for other job seekers - Be confident and don't let the interviewer's attention away from you.
If you don't know the solution, start small and make the interviewer know that you hold a good grip on the concepts.
Ask Interviewers may questions, this way you would let them know that you are interested in the company and the role.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was an aptitude round

Round 2 - Technical 

(1 Question)

  • Q1. In technical round i was asked some data structure problems

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your data structures
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude+ coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Online face to face coding tets
Round 3 - HR 

(1 Question)

  • Q1. Didn't attend the round

PTC Interview FAQs

How many rounds are there in PTC Associate Software Analyst interview?
PTC interview process usually has 3 rounds. The most common rounds in the PTC interview process are Coding Test, Technical and HR.
How to prepare for PTC Associate Software Analyst 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, CAD, Debugging, Python and Angularjs.
What are the top questions asked in PTC Associate Software Analyst interview?

Some of the top questions asked at the PTC Associate Software Analyst interview -

  1. Java, OOP, SQL , Collection , Recursion, Stack/Qu...read more
  2. Technical Ro...read more
  3. Formal HR ro...read more

Tell us how to improve this page.

PTC Associate Software Analyst Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 429 Interviews
Bosch Interview Questions
4.2
 • 334 Interviews
Johnson Controls Interview Questions
3.6
 • 260 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
ABB Interview Questions
4.1
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
View all
PTC Associate Software Analyst Salary
based on 54 salaries
₹7 L/yr - ₹10 L/yr
32% more than the average Associate Software Analyst Salary in India
View more details

PTC Associate Software Analyst Reviews and Ratings

based on 4 reviews

4.3/5

Rating in categories

3.4

Skill development

4.5

Work-life balance

3.4

Salary

4.6

Job security

4.5

Company culture

3.6

Promotions

3.7

Work satisfaction

Explore 4 Reviews and Ratings
Software Specialist
161 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
108 salaries
unlock blur

₹10.9 L/yr - ₹28.5 L/yr

QA Specialist
84 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.3
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