Upload Button Icon Add office photos

Phenom

Compare button icon Compare button icon Compare

Filter interviews by

Phenom Product Manager Interview Questions and Answers

Updated 16 Dec 2024

Phenom Product Manager Interview Experiences

1 interview found

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
Round 2 - Technical 

(1 Question)

  • Q1. Design a product SaaS

Product Manager Jobs at Phenom

View all

Interview questions from similar companies

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Product roadmap
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

DSA, 2hrs. along with aptitude and reasoning que were asked

Round 2 - english test 

(2 Questions)

  • Q1. Verbal test was taken
  • Q2. Grammar, punctuation, article ets were asked
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join us
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium leveln coding round

I applied via LinkedIn and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. 1. Explain difference between spring and spring boot
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool for quickly creating Spring-based applications.

    • Spring provides a comprehensive framework for building Java applications, while Spring Boot is a tool that simplifies and accelerates the process of creating Spring-based applications.

    • Spring requires more configuration and setup, while Spring Boot provides a pre-configured environment that re...

  • Answered by AI
  • Q2. 2. String anagram program
  • Ans. 

    A program to check if two strings are anagrams of each other.

    • Create two character arrays from the input strings

    • Sort the arrays

    • Compare the sorted arrays to check if they are equal

  • Answered by AI
  • Q3. 3. write small code using streams api
  • Ans. 

    Using Streams API to filter and map an array of strings

    • Create a stream from the array using Arrays.stream()

    • Use filter() to select elements that meet a certain condition

    • Use map() to transform each element into a new value

    • Use toArray() to convert the stream back into an array

  • Answered by AI
  • Q4. 4. java 8 concepts
  • Q5. 5. what is REST api
  • Ans. 

    REST API is a web service that uses HTTP requests to access and manipulate data.

    • REST stands for Representational State Transfer

    • It is an architectural style for building web services

    • It uses HTTP methods like GET, POST, PUT, DELETE to perform operations on resources

    • It is stateless and can be cached

    • It returns data in various formats like JSON, XML, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain everything properly

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Reversing a string
  • Ans. 

    Reversing a string involves flipping the order of characters in a given string.

    • Create an empty string to store the reversed string

    • Iterate through the original string from the end to the beginning

    • Append each character to the empty string

    • Return the reversed string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic question oh OS,threads,OOPS

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What are the solid principles?
  • Ans. 

    SOLID principles are a set of five design principles for writing maintainable and scalable code.

    • Single Responsibility Principle (SRP) - a class should have only one reason to change

    • Open-Closed Principle (OCP) - a class should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - a subclass should be able to replace its parent class without affecting the system's behavior

    • Interface Segreg...

  • Answered by AI
  • Q2. Difference between ref and out?
  • Ans. 

    Ref and out are both used for passing arguments by reference in C#. Ref is bidirectional while out is unidirectional.

    • Ref and out are used to pass arguments by reference instead of by value

    • Ref is used for both input and output parameters while out is only used for output parameters

    • Ref requires the variable to be initialized before passing while out does not

    • Example: void MyMethod(ref int x) { x = x + 1; } and void MyMeth

  • Answered by AI
  • Q3. Explain about your project its architecture.
  • Q4. What are the rest APIs and popular status codes?
  • Ans. 

    REST APIs are a way to interact with web services. Popular status codes include 200, 404, and 500.

    • REST APIs allow clients to access and manipulate resources on a server using HTTP requests

    • Common HTTP methods used in REST APIs include GET, POST, PUT, and DELETE

    • Status codes indicate the success or failure of a request, with 2xx codes indicating success and 4xx/5xx codes indicating errors

    • Some popular status codes include ...

  • Answered by AI
  • Q5. Explain memory management in c#.
  • Ans. 

    Memory management in C# involves automatic garbage collection and the use of pointers.

    • C# uses a garbage collector to automatically manage memory allocation and deallocation.

    • Developers can use pointers to directly manipulate memory, but this is not recommended.

    • C# also provides tools for managing memory usage, such as the IDisposable interface and the using statement.

  • Answered by AI
  • Q6. What are the latest architectural trends in c#?
  • Ans. 

    Microservices, cloud-native, and serverless are the latest architectural trends in C#.

    • Microservices architecture is gaining popularity due to its scalability and flexibility.

    • Cloud-native architecture focuses on building applications that are optimized for cloud environments.

    • Serverless architecture allows developers to focus on writing code without worrying about infrastructure management.

    • Other trends include containeri...

  • Answered by AI
  • Q7. Comparison between .net core and framework
  • Ans. 

    Both .NET Core and Framework are used for developing Windows applications, but Core is cross-platform and lightweight.

    • Core is open-source and modular, while Framework is a monolithic framework

    • Core has better performance and scalability than Framework

    • Core supports microservices architecture, while Framework does not

    • Core has a smaller footprint and can be deployed as a single executable

    • Framework has better backward compa

  • Answered by AI
  • Q8. Major advancements in .net core
  • Ans. 

    Major advancements in .NET Core include improved performance, cross-platform compatibility, and enhanced security features.

    • Improved performance through the use of Span and other optimizations

    • Cross-platform compatibility with support for Linux and macOS

    • Enhanced security features such as runtime code generation and data protection

    • Introduction of .NET Core 3.0 with support for Windows Desktop applications

    • Integration with ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and straightforward

Skills evaluated in this interview

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 Jan 2024. There were 3 interview rounds.

Round 1 - Assignment 

It was mostly on JavaScript

Round 2 - Technical 

(1 Question)

  • Q1. Focused on react
Round 3 - One-on-one 

(1 Question)

  • Q1. Brief about project

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. About java mainly
Round 2 - HR 

(2 Questions)

  • Q1. What aspires you most
  • Q2. Tell me about project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was basics on java and big data

Round 2 - Technical 

(1 Question)

  • Q1. Java c++ coding question

Phenom Interview FAQs

How many rounds are there in Phenom Product Manager interview?
Phenom interview process usually has 2 rounds. The most common rounds in the Phenom interview process are Technical.
How to prepare for Phenom Product Manager 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 Product Management, JIRA, Agile, Development Management and SAAS.
What are the top questions asked in Phenom Product Manager interview?

Some of the top questions asked at the Phenom Product Manager interview -

  1. improve a product engagem...read more
  2. Design a product S...read more

Tell us how to improve this page.

Phenom Product Manager Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 172 Interviews
ivy Interview Questions
3.6
 • 122 Interviews
Axtria Interview Questions
3.1
 • 115 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
Amadeus Interview Questions
3.9
 • 107 Interviews
EbixCash Limited Interview Questions
4.0
 • 101 Interviews
UKG Interview Questions
3.1
 • 100 Interviews
Cvent Interview Questions
3.5
 • 84 Interviews
Temenos Interview Questions
3.3
 • 82 Interviews
View all
Phenom Product Manager Salary
based on 20 salaries
₹17.4 L/yr - ₹35 L/yr
21% more than the average Product Manager Salary in India
View more details

Phenom Product Manager Reviews and Ratings

based on 4 reviews

4.5/5

Rating in categories

4.5

Skill development

4.2

Work-life balance

4.6

Salary

4.0

Job security

4.0

Company culture

3.9

Promotions

4.2

Work satisfaction

Explore 4 Reviews and Ratings
Product Manager

Hyderabad / Secunderabad

4-7 Yrs

Not Disclosed

Explore more jobs
Product Development Engineer
205 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
114 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Development Engineer 2
91 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Development Engineer 1
75 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