Upload Button Icon Add office photos

Phenom

Compare button icon Compare button icon Compare

Filter interviews by

Phenom Interview Questions and Answers

Updated 17 Jun 2025
Popular Designations

41 Interview questions

A Software Developer was asked 2w ago
Q. Write a function to find the maximum element in an array.
Ans. 

To find the maximum element in an array, iterate through the elements and keep track of the largest value encountered.

  • Initialize a variable to hold the maximum value, e.g., max = array[0].

  • Loop through each element in the array, comparing it with the current max.

  • If an element is greater than max, update max with this element.

  • Return the max value after completing the loop.

  • Example: For array [3, 5, 2, 8, 1], the maxi...

View all Software Developer interview questions
A PDE 1 was asked 4mo ago
Q. What are the requirements for developing a search component in React JS that can efficiently search through millions of words, and what approach should be taken to achieve this?
Ans. 

To develop a search component in React JS for efficient searching through millions of words, consider using a trie data structure and implementing features like autocomplete and fuzzy search.

  • Utilize a trie data structure for efficient searching through large datasets.

  • Implement features like autocomplete to provide suggestions as the user types.

  • Incorporate fuzzy search to allow for more flexible and forgiving searc...

A Devops Engineer was asked 7mo ago
Q. What is the port number of an SFTP server?
Ans. 

The port number of sftp server is 22.

  • The default port number for sftp server is 22.

  • Port 22 is used for secure file transfer over SSH protocol.

  • It is important to ensure that port 22 is open and accessible for sftp connections.

View all Devops Engineer interview questions
A Devops Engineer was asked 7mo ago
Q. What is VPC?
Ans. 

VPC stands for Virtual Private Cloud, a virtual network dedicated to a specific user in the cloud.

  • VPC allows users to create isolated networks within the cloud environment.

  • It provides control over network settings, such as IP address ranges, subnets, route tables, and network gateways.

  • VPC helps in securing resources by defining security groups and network access control lists (ACLs).

View all Devops Engineer interview questions
A Front end Developer was asked 8mo ago
Q. Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining.
Ans. 

Rain water trapping problem involves calculating the amount of rainwater that can be trapped between buildings or structures.

  • Calculate the maximum height of water that can be trapped at each point between two buildings.

  • Calculate the difference between the height of the building and the height of water at each point.

  • Sum up the differences to get the total amount of rainwater that can be trapped.

  • Example: Given heigh...

View all Front end Developer interview questions
A Product Designer was asked 9mo ago
Q. Explain the design process using one of the projects in your portfolio.
Ans. 

Redesigning a mobile app for a seamless user experience

  • Conducted user research to identify pain points and user needs

  • Created wireframes and prototypes to visualize design concepts

  • Iterated on designs based on user feedback and usability testing

  • Collaborated with developers to ensure design feasibility

  • Final design focused on intuitive navigation and clean aesthetics

View all Product Designer interview questions
A Software Engineer was asked 12mo ago
Q. Write a function to reverse a string using recursion.
Ans. 

Reverse a string using recursion

  • Create a recursive function that takes a string as input

  • Base case: if the string is empty, return an empty string

  • Recursive case: return the last character of the string concatenated with the result of calling the function on the substring excluding the last character

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked 12mo ago
Q. How do you find the path from the root to any node in a Binary Tree?
Ans. 

To find the path from the root to any node in a binary tree, perform a depth-first search and keep track of the path taken.

  • Perform a depth-first search starting from the root node

  • Keep track of the path taken using a stack or array

  • When the target node is found, the path will be stored in the stack or array

View all Software Engineer interview questions
A Software Engineer was asked 12mo ago
Q. Design a CRM tool for HR and job seekers with features like profile management, job application tracking, job posting and searching, scalable and database design, and handling large databases and latency.
Ans. 

A CRM tool for HR's and Job Seekers with features like Profile Management, Job Application Tracking, Job Posting and Searching, Scalable Database Design, and Handling large database and latency.

  • Implement user-friendly interface for profile management with options to update personal information, skills, and experience.

  • Create a dashboard for job seekers to track their job applications, including status updates and i...

View all Software Engineer interview questions
A Software Engineer was asked 12mo ago
Q. Have you used Kubernetes, and how do you ensure a specific number of instances are always running?
Ans. 

Yes, Kubernetes can be used to manage n number of instances by defining the desired number in the deployment configuration.

  • Define the desired number of instances in the 'replicas' field of the deployment configuration.

  • For example, setting 'replicas: 3' will ensure that Kubernetes maintains 3 instances of the application running at all times.

  • Kubernetes will automatically scale the number of instances up or down bas...

View all Software Engineer interview questions

Phenom Interview Experiences

47 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. How to find Path from Root to any node in Binary Tree
  • Ans. 

    To find the path from the root to any node in a binary tree, perform a depth-first search and keep track of the path taken.

    • Perform a depth-first search starting from the root node

    • Keep track of the path taken using a stack or array

    • When the target node is found, the path will be stored in the stack or array

  • Answered by AI
  • Q2. Reverse a String using recursion.
  • Q3. What is SingleTon and how to make it Non-Clonable
Round 2 - System Design 

(3 Questions)

  • Q1. Design a CRM tool for HR's and Job Seekers. with features like 1.Profile Management 2.Job Application Tracking 3.Job Posting and Searching 4.Scalable and Database Design 5.Handling large data base and lat...
  • Ans. 

    A CRM tool for HR's and Job Seekers with features like Profile Management, Job Application Tracking, Job Posting and Searching, Scalable Database Design, and Handling large database and latency.

    • Implement user-friendly interface for profile management with options to update personal information, skills, and experience.

    • Create a dashboard for job seekers to track their job applications, including status updates and interv...

  • Answered by AI
  • Q2. How to handle fault tolearnace ? Monitoring and logging using Prometheus, Grafana and ELK (elastic search,Logstash,Kibana). Ensure Redundancy and fail over mechanisms.
  • Ans. 

    Handling fault tolerance involves monitoring and logging with Prometheus, Grafana, and ELK, as well as implementing redundancy and failover mechanisms.

    • Implement health checks to monitor the status of services and applications

    • Set up alerts and notifications for abnormal behavior or failures

    • Use Prometheus for metric collection and Grafana for visualization of data

    • Utilize ELK stack for centralized logging and analysis of ...

  • Answered by AI
  • Q3. DId you use Kubernetes and how do you tell kubernetes to have n number of instances up all the time?
  • Ans. 

    Yes, Kubernetes can be used to manage n number of instances by defining the desired number in the deployment configuration.

    • Define the desired number of instances in the 'replicas' field of the deployment configuration.

    • For example, setting 'replicas: 3' will ensure that Kubernetes maintains 3 instances of the application running at all times.

    • Kubernetes will automatically scale the number of instances up or down based on...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Phenom Software Engineer interview:
  • DSA
  • System Design
  • Microservices
Interview preparation tips for other job seekers - Better try to give In person interviews. which are sometimes easier than online Interviews.
Prepare Well on System Design , Microservices and how they communicate, DSA.(LeetCode 150 Interview Question is a must.)

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the design process with one of the portfolio projects
  • Ans. 

    Redesigning a mobile app for a seamless user experience

    • Conducted user research to identify pain points and user needs

    • Created wireframes and prototypes to visualize design concepts

    • Iterated on designs based on user feedback and usability testing

    • Collaborated with developers to ensure design feasibility

    • Final design focused on intuitive navigation and clean aesthetics

  • Answered by AI
  • Q2. How do you manage opinion clashes with Product & Engineering teams
  • Ans. 

    I address opinion clashes by fostering open communication, seeking compromise, and focusing on the end goal.

    • Encourage open communication to understand different perspectives

    • Seek compromise by finding common ground and mutually beneficial solutions

    • Focus on the end goal and remind teams of the bigger picture

    • Use data and user feedback to guide decisions and resolve conflicts

    • Facilitate discussions and mediate disagreements...

  • Answered by AI
Round 2 - Assignment 

Assignment to test our thought process and research execution skills

Round 3 - Technical 

(2 Questions)

  • Q1. Whiteboard challenge
  • Q2. Assignment walkthrough

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be capable of thoroughly explaining the thought process behind design decisions and be ready to face real life challenge questions. Prepare well for whiteboard challenge which will test our product thinking skills.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Time, distance, interest

Round 2 - Technical 

(1 Question)

  • Q1. Java, testing. analytical
Round 3 - Technical 

(1 Question)

  • Q1. Personality based questions

Product Manager Interview Questions & Answers

user image Nishant Patil

posted on 16 Dec 2024

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

(1 Question)

  • Q1. Improve a product engagement
  • Ans. 

    Enhancing product engagement involves understanding user needs, optimizing features, and fostering community interaction.

    • Conduct user research to identify pain points and desires, e.g., surveys or interviews.

    • Implement gamification elements, such as rewards for completing tasks or milestones.

    • Enhance onboarding processes to ensure users understand product value quickly.

    • Create a community forum for users to share experien...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design a product SaaS
  • Ans. 

    A SaaS platform for remote team collaboration, integrating project management, communication, and file sharing in one seamless interface.

    • User-friendly dashboard for project tracking and task assignments.

    • Real-time chat and video conferencing features for team communication.

    • Integration with popular tools like Google Drive, Slack, and Trello.

    • Customizable templates for project planning and reporting.

    • Mobile app for on-the-g...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is the port number of sftp server
  • Ans. 

    The port number of sftp server is 22.

    • The default port number for sftp server is 22.

    • Port 22 is used for secure file transfer over SSH protocol.

    • It is important to ensure that port 22 is open and accessible for sftp connections.

  • Answered by AI
  • Q2. What is vpc ?
  • Ans. 

    VPC stands for Virtual Private Cloud, a virtual network dedicated to a specific user in the cloud.

    • VPC allows users to create isolated networks within the cloud environment.

    • It provides control over network settings, such as IP address ranges, subnets, route tables, and network gateways.

    • VPC helps in securing resources by defining security groups and network access control lists (ACLs).

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 28 Feb 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Coding Test 

Create a recursive directory with checkboxes in React.js.

Round 2 - One-on-one 

(1 Question)

  • Q1. What are the requirements for developing a search component in React JS that can efficiently search through millions of words, and what approach should be taken to achieve this?
  • Ans. 

    To develop a search component in React JS for efficient searching through millions of words, consider using a trie data structure and implementing features like autocomplete and fuzzy search.

    • Utilize a trie data structure for efficient searching through large datasets.

    • Implement features like autocomplete to provide suggestions as the user types.

    • Incorporate fuzzy search to allow for more flexible and forgiving search que...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Can you provide a self-introduction?
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
  • 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 C, B,...

  • Answered by AI
  • 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
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Java and microservices questions
  • Q2. Resume questions
Round 2 - HR 

(2 Questions)

  • Q1. Compensation discussions
  • Q2. Joining date and availability

Interview Questions & Answers

user image Anonymous

posted on 21 Jul 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. General disscuison about my expreince
Round 2 - One-on-one 

(2 Questions)

  • Q1. Share your expreince ?
  • Q2. Tell me processes followed in Hiring

Interview Preparation Tips

Interview preparation tips for other job seekers - - Focus on Communication
- Be specific with your words
- Use key words while sharing Work Expreince
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Find the maximum element in array.
  • Ans. 

    To find the maximum element in an array, iterate through the elements and keep track of the largest value encountered.

    • Initialize a variable to hold the maximum value, e.g., max = array[0].

    • Loop through each element in the array, comparing it with the current max.

    • If an element is greater than max, update max with this element.

    • Return the max value after completing the loop.

    • Example: For array [3, 5, 2, 8, 1], the maximum i...

  • Answered by AI
  • Q2. Deisgn the parking plot

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Phenom?
Ask anonymously on communities.

Phenom Interview FAQs

How many rounds are there in Phenom interview?
Phenom interview process usually has 2-3 rounds. The most common rounds in the Phenom interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Phenom 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 Python, Javascript, Agile, Coding and Analytical.
What are the top questions asked in Phenom interview?

Some of the top questions asked at the Phenom interview -

  1. 1. Product Prioritization 2. Fav product and why, what would you improve in tha...read more
  2. Design a CRM tool for HR's and Job Seekers. with features like 1.Profile Manag...read more
  3. DId you use Kubernetes and how do you tell kubernetes to have n number of insta...read more
How long is the Phenom interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 42 interview experiences

Difficulty level

Easy 15%
Moderate 75%
Hard 10%

Duration

Less than 2 weeks 63%
2-4 weeks 37%
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 198 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 112 Interviews
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
SPRINKLR Interview Questions
2.9
 • 105 Interviews
View all

Phenom Reviews and Ratings

based on 296 reviews

3.8/5

Rating in categories

3.9

Skill development

3.6

Work-life balance

3.6

Salary

4.0

Job security

3.6

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 296 Reviews and Ratings
Phenom India Marketing Hiring

Hyderabad / Secunderabad

2-6 Yrs

Not Disclosed

Product Principal Engineer - Machine Learning

Hyderabad / Secunderabad

10-15 Yrs

Not Disclosed

Sales Development Representative

Hyderabad / Secunderabad

1-3 Yrs

₹ 4-5 LPA

Explore more jobs
Product Development Engineer
218 salaries
unlock blur

₹9.6 L/yr - ₹14.5 L/yr

Software Engineer
134 salaries
unlock blur

₹20.8 L/yr - ₹25 L/yr

Product Development Engineer 2
108 salaries
unlock blur

₹14.4 L/yr - ₹32 L/yr

Product Development Engineer 1
91 salaries
unlock blur

₹7.8 L/yr - ₹15 L/yr

Product Data Analyst
37 salaries
unlock blur

₹2.7 L/yr - ₹6 L/yr

Explore more salaries
Compare Phenom with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Chetu

3.3
Compare

R Systems International

3.3
Compare
write
Share an Interview