Upload Button Icon Add office photos

Phenom

Compare button icon Compare button icon Compare

Filter interviews by

Phenom Interview Questions, Process, and Tips

Updated 28 Feb 2025

Top Phenom Interview Questions and Answers

View all 43 questions

Phenom Interview Experiences

Popular Designations

46 interviews found

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

(1 Question)

  • Q1. Rain water trapping problem
  • 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 heights of...

  • Answered by AI

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
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 2023. There were 4 interview rounds.

Round 1 - Video Call 

(2 Questions)

  • Q1. Introducing ourselves through selfie video
  • Q2. How could you be of an asset to our organization ?
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is the toughest challenge faced with customer in recent times
  • Ans. 

    The toughest challenge faced with customers in recent times is managing high call volumes and long wait times.

    • Managing high call volumes and long wait times

    • Ensuring timely resolution of customer issues

    • Maintaining customer satisfaction despite the challenges

    • Balancing workload and resources effectively

    • Implementing efficient call routing and queuing systems

    • Providing clear communication and updates to customers

  • Answered by AI
  • Q2. What is the process followed to better engage with customers ?
  • Ans. 

    To better engage with customers, the process involves active listening, clear communication, personalized interactions, prompt responses, and continuous improvement.

    • Active listening: Paying attention to customer needs and concerns.

    • Clear communication: Using simple and concise language to avoid confusion.

    • Personalized interactions: Tailoring the support to meet individual customer requirements.

    • Prompt responses: Providing...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. How could you resolve the troubleshooting issues?
  • Ans. 

    I would resolve troubleshooting issues by following a systematic approach and utilizing my technical knowledge and problem-solving skills.

    • Identify the problem by gathering information from the user

    • Analyze the symptoms and possible causes

    • Perform diagnostic tests to narrow down the issue

    • Apply known solutions or troubleshoot step-by-step

    • Document the troubleshooting process and solution for future reference

    • Provide clear an...

  • Answered by AI
  • Q2. What troubleshooting tools were used by you earlier in your previous responsibility ?
  • Ans. 

    I have used various troubleshooting tools in my previous responsibility as a Technical Support Lead.

    • Network diagnostic tools like ping, traceroute, and nslookup

    • Remote desktop tools like TeamViewer and AnyDesk

    • System monitoring tools like Task Manager and Resource Monitor

    • Log analysis tools like Event Viewer and Log Parser

    • Hardware diagnostic tools like memtest86 and CPU-Z

    • Software debugging tools like Visual Studio Debugge

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What is the reason for you leaving your present organization ?
  • Q2. What is your expected CTC?
  • Ans. 

    I expect a competitive salary based on my experience, skills, and the responsibilities of the Technical Support Lead role.

    • I have researched the average salary range for Technical Support Lead positions in the industry.

    • I have considered my years of experience and expertise in technical support.

    • I have taken into account the level of responsibility and leadership required for the role.

    • I am open to negotiation based on the...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Phenom Technical Support Lead interview:
  • Communication Skills

Technical Support Lead Interview Questions asked at other Companies

Q1. What is the process followed to better engage with customers ?
View answer (1)
Phenom Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Sep 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 Resume tips
Round 2 - Aptitude Test 

50 questions asked in aptitude test

Round 3 - Group Discussion 

What are the advantages and disadvantages of social media

Round 4 - Technical 

(3 Questions)

  • Q1. Self intro in a different way
  • Q2. What is hoisting in javascript
  • Ans. 

    Hoisting is a behavior in JavaScript where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q3. Brief explanation of project
Round 5 - HR 

(2 Questions)

  • Q1. Self intro in detail
  • Q2. Have you checked the website

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skills are most important

Skills evaluated in this interview

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
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:
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Advantages of async and threading and their scope.
  • 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 CPU-bou...

  • Answered by AI
  • Q2. Two sum leetcode model
  • 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.

  • Answered by AI
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

Top Phenom Product Development Engineer Interview Questions and Answers

Q1. Integer to roman, sort an array containing only 0,1,2 in single iteration.
View answer (1)

Product Development Engineer Interview Questions asked at other Companies

Q1. Trapping Rainwater Problem Statement You are given an array ARR of long type, which represents an elevation map where ARR[i] denotes the elevation of the ith bar. Calculate the total amount of rainwater that can be trapped within these elev... read more
View answer (1)

Phenom interview questions for popular designations

 Product Development Engineer

 (6)

 Software Engineer

 (4)

 Software Engineer Trainee

 (2)

 Software Developer

 (2)

 PDE

 (2)

 Quality Assurance

 (2)

 Business Development Executive

 (1)

 Product Manager

 (1)

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

(1 Question)

  • Q1. Questions on Devops
Round 2 - Technical 

(1 Question)

  • Q1. Questions on Kubernetes and Docker
Round 3 - HR 

(1 Question)

  • Q1. Questions on Salary

Site Reliability Engineer Interview Questions asked at other Companies

Q1. what is diff cloud formation vs terraform, release management like blue green etc.
View answer (1)

Get interview-ready with Top Phenom Interview Questions

Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2023

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

I applied via Referral and was interviewed in Jun 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 - Technical 

(1 Question)

  • Q1. Coding round - sort the list without builtin methods and in a optimised way - return list of palindromes in the given list - internship exp
  • Ans. 

    Sort list without built-in methods, return palindromes in array of strings

    • Implement quicksort algorithm to sort the list without using built-in methods

    • Iterate through the list and check if each element is a palindrome

    • Return a new list containing only the palindromes

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. - reverse linked list - level order traversal - sorting
  • Ans. 

    Reverse linked list, level order traversal, and sorting are common algorithms in data structures and algorithms.

    • To reverse a linked list, iterate through the list and change the pointers to reverse the order.

    • For level order traversal, use a queue data structure to traverse the tree level by level.

    • Sorting can be done using various algorithms like bubble sort, quicksort, or mergesort.

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. -general coding and hr questions
  • Q2. - general coding and hr questions on phenom,past experience

Interview Preparation Tips

Interview preparation tips for other job seekers - practice coding for this role

Skills evaluated in this interview

Jobs at Phenom

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

I applied via Walk-in and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

They conduct a written exam which includes aptitude and tech skills

Round 2 - Group Discussion 

After clearing the written exam they will conduct GD

Round 3 - One-on-one 

(1 Question)

  • Q1. They mainly focus on how is your communication, techical skills, confidence and how fit for phenom
Round 4 - HR 

(1 Question)

  • Q1. Mainly focus on your mental ability to handle the hard situations

Integration Engineer Interview Questions asked at other Companies

Q1. What are the different types of file formats that are used in the integrations? What is the difference between REST and SOAP? What types of protocols are you used in your projects?
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 21 Apr 2024

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Assessing skills, knowledge in concise format

Round 2 - Coding Test 

Evaluating programming logic ability and creativity

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

I applied via Walk-in and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Asthmatic,Reasoning,Mathametics

Round 2 - Technical 

(1 Question)

  • Q1. About Projects, Self intro, Coding, Basics

Interview Preparation Tips

Topics to prepare for Phenom Product Executive interview:
  • Projact
  • Basic

Product Executive Interview Questions asked at other Companies

Q1. What do you know about sales trends?
View answer (3)
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

Top Phenom Product Development Engineer Interview Questions and Answers

Q1. Integer to roman, sort an array containing only 0,1,2 in single iteration.
View answer (1)

Product Development Engineer Interview Questions asked at other Companies

Q1. Trapping Rainwater Problem Statement You are given an array ARR of long type, which represents an elevation map where ARR[i] denotes the elevation of the ith bar. Calculate the total amount of rainwater that can be trapped within these elev... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

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, Agile, Coding, Javascript and Analytical.
What are the top questions asked in Phenom interview?

Some of the top questions asked at the Phenom interview -

  1. For Example: N Cards are placed, if you flip a card, the next card will get rev...read more
  2. Explain the approach to any questions from round 1 & how it could be improv...read more
  3. 1. Product Prioritization 2. Fav product and why, what would you improve in tha...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.

Recently Viewed

JOBS

Phenom

No Jobs

JOBS

Phenom

No Jobs

JOBS

Thought Focus

No Jobs

INTERVIEWS

Phenom

No Interviews

SALARIES

Phenom

LIST OF COMPANIES

Phenom

Overview

INTERVIEWS

PeopleScout

No Interviews

DESIGNATION

DESIGNATION

LIST OF COMPANIES

Synergy

Overview

Tell us how to improve this page.

Phenom Interview Process

based on 41 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Thomson Reuters Interview Questions
4.1
 • 112 Interviews
PeopleStrong Interview Questions
3.4
 • 50 Interviews
Careernet Interview Questions
3.7
 • 35 Interviews
TALENTEDGE Interview Questions
3.3
 • 21 Interviews
PeopleScout Interview Questions
3.1
 • 5 Interviews
TalentSprint Interview Questions
4.0
 • 4 Interviews
CareerBuilder Interview Questions
4.0
 • 2 Interviews
View all

Phenom Reviews and Ratings

based on 272 reviews

4.0/5

Rating in categories

4.0

Skill development

3.7

Work-life balance

3.7

Salary

4.0

Job security

3.8

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 272 Reviews and Ratings
Account Executive

Bangalore / Bengaluru

1-2 Yrs

Not Disclosed

Account Executive

Hyderabad / Secunderabad

1-2 Yrs

Not Disclosed

Technical Delivery Lead

Hyderabad / Secunderabad

6-11 Yrs

Not Disclosed

Explore more jobs
Product Development Engineer
197 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
115 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Development Engineer 2
93 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Development Engineer 1
90 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Phenom with

Talentica Software

4.1
Compare

TalentSprint

4.0
Compare

TALENTEDGE

3.3
Compare

PeopleStrong

3.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview