Upload Button Icon Add office photos

Phenom

Compare button icon Compare button icon Compare

Filter interviews by

Phenom Product Development Engineer Interview Questions and Answers

Updated 5 Jun 2024

8 Interview questions

A Product Development Engineer was asked
Q. Describe a DBMS locking scenario with an example.
Ans. 

DBMS locking is a mechanism to manage concurrent access to data in a database to prevent data corruption.

  • Locking is used to ensure data integrity and consistency in a multi-user environment.

  • Types of locks include shared locks, exclusive locks, and update locks.

  • Example scenario: Two users trying to update the same record simultaneously - one user gets an exclusive lock while the other waits.

  • Deadlocks can occur when...

A Product Development Engineer was asked
Q. Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get(key) - Get the value (will always be positive) of the key if the key exists in the ...
Ans. 

LRU cache program is a data structure that stores the most recently used items.

  • LRU cache is typically implemented using a doubly linked list and a hashmap.

  • When a new item is accessed, it is moved to the front of the list.

  • If the cache is full, the least recently used item is removed from the end of the list.

  • Example: If the cache has a capacity of 3 and items A, B, C are accessed in that order, the cache will store ...

Product Development Engineer Interview Questions Asked at Other Companies

Q1. Trapping Rainwater Problem Statement You are given an array ARR o ... read more
asked in Electrolux
Q2. Tell me about your previous experiences.
asked in Phenom
Q3. Integer to roman, sort an array containing only 0,1,2 in single i ... read more
Q4. Given a string, find the first repeating character. For example, ... read more
asked in Phenom
Q5. What are the advantages of asynchronous programming and threading ... read more
A Product Development Engineer was asked
Q. How can you swap two numbers without using a third variable?
Ans. 

To swap numbers without using a third variable, use arithmetic operations.

  • Add the two numbers to get the first number

  • Subtract the second number from the sum to get the second number

  • Subtract the original first number from the sum to get the original second number

A Product Development Engineer was asked
Q. What are the advantages of asynchronous programming and threading, and what are their respective scopes?
Ans. 

Async and threading offer advantages in improving performance and responsiveness in software development.

  • Async allows for non-blocking operations, improving responsiveness by allowing other tasks to continue while waiting for a response.

  • Threading enables parallel execution of tasks, utilizing multiple CPU cores to improve performance.

  • Async is more suitable for I/O-bound operations, while threading is better for CP...

A Product Development Engineer was asked
Q. Explain the Global Interpreter Lock (GIL).
Ans. 

Global Interpreter Lock (GIL) is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes simultaneously.

  • GIL is a mechanism used in CPython to ensure that only one thread executes Python bytecode at a time.

  • It prevents multiple threads from executing Python code concurrently, which can cause issues with thread safety.

  • GIL can impact the performance of multi-threaded...

What are the roles & responsibilities of a Product Development Engineer at Phenom?

Backend Development

  • Design and develop scalable backend systems
  • Maintain and optimize existing backend applications
  • Implement and integrate RESTful APIs

Read full roles & responsibilities

A Product Development Engineer was asked
Q. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use ...
Ans. 

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

  • Use a hashmap to store the difference between the target and each element as keys and their indices as values.

  • Iterate through the array and check if the current element's complement exists in the hashmap.

  • Return the indices of the two numbers that add up to the target.

Phenom HR Interview Questions

5 questions and answers

Q. How do you manage opinion clashes with Product & Engineering teams?
Q. Share your experience.
Q. Tell me about the processes followed in hiring.
A Product Development Engineer was asked
Q. How do you implement a queue?
Ans. 

A queue can be implemented using arrays or linked lists. It follows the FIFO principle.

  • Create an empty array or linked list

  • Enqueue elements at the end of the queue

  • Dequeue elements from the front of the queue

  • Implement methods like isEmpty, isFull, peek, etc.

  • Example: Queue implemented using an array - https://www.geeksforgeeks.org/queue-set-1introduction-and-array-implementation/

Are these interview questions helpful?
A Product Development Engineer was asked
Q. Integer to roman, sort an array containing only 0,1,2 in single iteration.
Ans. 

Use two pointers to swap 0s to the beginning and 2s to the end while keeping 1s in the middle.

  • Initialize two pointers, one for 0s (left) and one for 2s (right).

  • Iterate through the array and swap 0s to the left pointer and 2s to the right pointer.

  • Example: Input array = ['2', '1', '0', '2', '1', '0'], Output array = ['0', '0', '1', '1', '2', '2']

Phenom Product Development Engineer Interview Experiences

6 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic java and spring boot
  • Q2. Design principles
Round 2 - Technical 

(2 Questions)

  • Q1. LRU cache program
  • Q2. DBMS Locking exmple with a scenario
  • Ans. 

    DBMS locking is a mechanism to manage concurrent access to data in a database to prevent data corruption.

    • Locking is used to ensure data integrity and consistency in a multi-user environment.

    • Types of locks include shared locks, exclusive locks, and update locks.

    • Example scenario: Two users trying to update the same record simultaneously - one user gets an exclusive lock while the other waits.

    • Deadlocks can occur when two ...

  • 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 Referral and was interviewed in Jul 2023. There were 5 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 

(2 Questions)

  • Q1. Advantages of async and threading and their scope.
  • Q2. Two sum leetcode model
Round 3 - Technical 

(2 Questions)

  • Q1. Explain about Global interpreter lock.
  • Ans. 

    Global Interpreter Lock (GIL) is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes simultaneously.

    • GIL is a mechanism used in CPython to ensure that only one thread executes Python bytecode at a time.

    • It prevents multiple threads from executing Python code concurrently, which can cause issues with thread safety.

    • GIL can impact the performance of multi-threaded Pyth...

  • Answered by AI
  • Q2. Integer to roman, sort an array containing only 0,1,2 in single iteration.
  • Ans. 

    Use two pointers to swap 0s to the beginning and 2s to the end while keeping 1s in the middle.

    • Initialize two pointers, one for 0s (left) and one for 2s (right).

    • Iterate through the array and swap 0s to the left pointer and 2s to the right pointer.

    • Example: Input array = ['2', '1', '0', '2', '1', '0'], Output array = ['0', '0', '1', '1', '2', '2']

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. General questions on aws, and resume.
  • Q2. Coding question on two pointer, three pointer and sliding window techniques
Round 5 - HR 

(1 Question)

  • Q1. General interaction about company previous experience and negotiations

Interview Preparation Tips

Topics to prepare for Phenom Product Development Engineer interview:
  • Python3
  • Rasa
  • Asynchronous
  • DSA
Interview preparation tips for other job seekers - Be thorough on DSA u will have a great learning experience.

Skills evaluated in this interview

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 Jan 2024. There was 1 interview round.

Round 1 - ProblemSolving&CriticalThinking 

(1 Question)

  • Q1. Questions were about previous projects challenges and how did you solve them Secnario based questions , problem solving skills and thought process and critical thinking
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

How can implement a queue

Round 2 - Technical 

(1 Question)

  • Q1. How can swap the numbers without using the third variable

Skills evaluated in this interview

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. Exchanging numbers without third variable
  • Ans. 

    To exchange numbers without a third variable, use addition and subtraction operations.

    • Add the two numbers to get the sum.

    • Subtract the first number from the sum to get the second number.

    • Subtract the second number from the sum to get the first number.

  • Answered by AI
  • Q2. Pointers based questions
  • Q3. How to implement queue

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics. Focus on one programing language completely. Have to be strong in data structures.

Skills evaluated in this interview

I applied via Hirist and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. LRU cache, implement queue using stack, resume questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong at ds and algos
and problem solving

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Phenom?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic oop
  • Q2. Previous projects and walktrough of one of the project, if any
  • Q3. Basic English test on a computer

Interview Preparation Tips

Interview preparation tips for other job seekers - The first step of the interview is the basic communication skills, which is taken on computer, try to listen carefully, most of the questions are only about what you have comprehend from the automated voice when played over.

OOP is very basic, they may ask some real life examples.

If you have worked previously, they may ask you about one of your projects. What technologies have you used ans why.

Interview Questionnaire 

1 Question

  • Q1. Oops programming,SQL server Database

I applied via Naukri.com and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions on java8
  • Q2. Questions on multithreading
  • Q3. Questions on exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was a coding round where interviewer asked questions randomly and were asked to optimise our code. Next round was a technical round where everyone needs to be thorough with their technical skills

I applied via Campus Placement and was interviewed before Sep 2021. 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 

Math and verbal round .

Round 3 - Group Discussion 

General topics to speak

Round 4 - Technical 

(1 Question)

  • Q1. Duplicates in array College Projects Hashmap implementation
  • Ans. 

    Implement a function to find duplicates in an array of strings using Hashmap.

    • Create a Hashmap to store the frequency of each string in the array

    • Iterate through the array and check if the frequency of any string is greater than 1

    • If yes, add it to the list of duplicates

    • Return the list of duplicates

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer what you know, be genuine and honest

Skills evaluated in this interview

Phenom Interview FAQs

How many rounds are there in Phenom Product Development Engineer interview?
Phenom interview process usually has 2-3 rounds. The most common rounds in the Phenom interview process are Technical, Resume Shortlist and HR.
How to prepare for Phenom Product Development Engineer 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 Phenom. The most common topics and skills that interviewers at Phenom expect are Coding, Analytical, System Design, Backend and Agile.
What are the top questions asked in Phenom Product Development Engineer interview?

Some of the top questions asked at the Phenom Product Development Engineer interview -

  1. Integer to roman, sort an array containing only 0,1,2 in single iterati...read more
  2. Advantages of async and threading and their sco...read more
  3. How can swap the numbers without using the third varia...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Phenom Product Development Engineer Salary
based on 223 salaries
₹10 L/yr - ₹15.4 L/yr
52% more than the average Product Development Engineer Salary in India
View more details

Phenom Product Development Engineer Reviews and Ratings

based on 46 reviews

3.7/5

Rating in categories

4.0

Skill development

3.3

Work-life balance

3.3

Salary

3.7

Job security

3.6

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 46 Reviews and Ratings
Product Development Engineer
223 salaries
unlock blur

₹10 L/yr - ₹15.4 L/yr

Software Engineer
136 salaries
unlock blur

₹5.6 L/yr - ₹12 L/yr

Product Development Engineer 2
109 salaries
unlock blur

₹16.5 L/yr - ₹28.9 L/yr

Product Development Engineer 1
93 salaries
unlock blur

₹8.6 L/yr - ₹15 L/yr

Product Data Analyst
39 salaries
unlock blur

₹2.7 L/yr - ₹6 L/yr

Explore more salaries
Compare Phenom with

Thomson Reuters

4.0
Compare

Oracle Cerner

3.6
Compare

Chetu

3.4
Compare

R Systems International

3.2
Compare
write
Share an Interview