Upload Button Icon Add office photos

Phenom

Compare button icon Compare button icon Compare

Filter interviews by

Phenom Software Engineer Trainee Interview Questions and Answers

Updated 5 Dec 2023

Phenom Software Engineer Trainee Interview Experiences

2 interviews found

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 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

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

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

Round 1 - Coding Test 

Written Test-aptitutde and technical

Round 2 - Group Discussion 

Very comfortably you can handle if you speak well

Round 3 - Technical 

(1 Question)

  • Q1. Basics of front end
Round 4 - HR 

(1 Question)

  • Q1. About personality

Interview Preparation Tips

Interview preparation tips for other job seekers - Phenom People is a good company .Work culture is good .

Software Engineer Trainee Interview Questions Asked at Other Companies

asked in HSBC Group
Q1. Palindromic Linked List Problem Statement Given a singly linked l ... read more
asked in HSBC Group
Q2. Search in a 2D Matrix Given a 2D matrix MAT of size M x N, where ... read more
asked in GlobalLogic
Q3. Slot Game Problem Statement You are given a slot machine with fou ... read more
Q4. 1. Explain oops and its 4 pillars 2. Explain polymorphism with re ... read more
asked in HSBC Group
Q5. Maximum Level Sum in a Binary Tree Given a Binary Tree with integ ... read more

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Collections,SQL

I applied via Walk-in and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic oops concepts and logical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool and stick to the basics.Simple questions

Interview Questionnaire 

1 Question

  • Q1. Basic OOPS concept, sql questions

I applied via Naukri.com and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Hashmap implementation
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and provides constant time complexity for insertion, deletion, and retrieval.

    • Hashmap uses hashing function to map keys to indices in an array

    • Collisions can occur when two keys map to the same index, which can be resolved using separate chaining or open addressing

    • Java implementation: HashMap map = new HashMap<>()

  • Answered by AI
  • Q2. Server and environment
  • Q3. Differentce Between een Spring boot,spring
  • Ans. 

    Spring is a framework while Spring Boot is a tool that simplifies Spring application development.

    • Spring Boot provides auto-configuration and embedded servers.

    • Spring requires more configuration and setup.

    • Spring Boot is opinionated and follows 'convention over configuration'.

    • Spring Boot reduces boilerplate code.

    • Spring Boot is ideal for microservices and standalone applications.

  • Answered by AI
  • Q4. Type of conttoler in spring and type of annotations
  • Ans. 

    The type of controller in Spring is @Controller and the type of annotations are @RequestMapping and @ResponseBody.

    • @Controller is used to mark a class as a Spring MVC controller.

    • @RequestMapping is used to map a URL to a method in a controller.

    • @ResponseBody is used to indicate that the return value of a method should be serialized and returned as the response body.

  • Answered by AI
  • Q5. What is junkins why we use
  • Ans. 

    Junkins is not a known term in software engineering.

    • Junkins is not a term used in software engineering.

    • It is possible that the interviewer misspoke or meant to ask a different question.

    • It is important to clarify any confusion or misunderstandings during an interview.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - More should we prectical not to theorical

Skills evaluated in this interview

I applied via Company Website and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked python memory management, string manipulations, regex, and about my current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep strong hold on python basics and data structure

I applied via Naukri.com and was interviewed in Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I have got questions about vsam files and about SQL queries.
  • Q2. What is my previous work and project roles and responsibilities.?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basics clear with your project,your work,and your roles and responsibilities and be good to make them understand what you willing to answer.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

It was an online technical round. There were around 20 MCQs and two coding questions. The round had an login window of 30 minutes. One coding question was of the level leetcode medium and the other was leetcode hard.

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. 

    Given a sorted N * N matrix, find the position of a target integer X.

    • Iterate over each row and column to search for the target integer

    • Utilize the sorted nature of the matrix to optimize the search process

    • Return the position of the target integer if found, else return -1 -1

  • Answered by AI
  • Q2. 

    Euler’s Totient Function Problem Statement

    Given an integer N, your task is to determine the count of integers between 1 and N (inclusive) that are coprime to N.

    Input:

    The first line contains an intege...
  • Ans. 

    Euler's Totient Function calculates count of integers coprime to N between 1 and N.

    • Implement Euler's Totient Function to calculate count of coprime integers to N.

    • Use the formula: phi(N) = N * (1 - 1/p1) * (1 - 1/p2) * ... * (1 - 1/pk) where p1, p2, ..., pk are prime factors of N.

    • Example: For N = 9, phi(9) = 9 * (1 - 1/3) = 6.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a technical + HR round. The interview panel consisted of two technical guys and one person from HR.

  • Q1. 

    Sort Array of Strings Problem Statement

    Given an array of strings ARRSTR[] of size N, and a character C, your task is to sort the ARRSTR[] array according to a new alphabetical order that starts with the ...

  • Ans. 

    Sort an array of strings based on a new alphabetical order starting with a given character.

    • Iterate through the array of strings and compare each string with the given character to determine the new order.

    • Implement a custom comparator function to sort the strings based on the new alphabetical order.

    • Use built-in sorting functions in programming languages like Python, Java, or C++ to efficiently sort the array.

  • Answered by AI
  • Q2. Can you explain the pillars of Object-Oriented Programming (OOP)?
  • Ans. 

    The pillars of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components of an object, protecting its integrity.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class, ena

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Amity School Of Engineering And Technology. I applied for the job as SDE - 1 in BengaluruEligibility criteriaAbove 7.5 CGPA, No BacklogsAmadeus interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Database Manangement Systems, SQL Queries, Greedy and DP Problems, Basics of Computer Networks.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on CP platforms such as codechef and codeforces. It will greatly help you for clearing coding round.
Tip 2 : Make notes of theory Subjects. It will greatly help you in last minute preparation.
Tip 3 : Go through the interview experience of the company before hand.
Tip 4 : Practice questions by narrating the explaination. Else it gets very difficult to both explain and code at the same time of interview.

Application resume tips for other job seekers

Tip 1 : Never lie on the resume. If you are not confident about something dont add it.
Tip 2 : Have atleast 2 projects on resume.
Tip 3 : Dont make it colourful. Follow any formal standard template.
Tip 4 : Add links to the project or your work if possible.
Tip 5 : Have only one Page. Dont write stories.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Java and oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in java and oops concepts

Phenom Interview FAQs

How many rounds are there in Phenom Software Engineer Trainee interview?
Phenom interview process usually has 5 rounds. The most common rounds in the Phenom interview process are Group Discussion, Technical and HR.
What are the top questions asked in Phenom Software Engineer Trainee interview?

Some of the top questions asked at the Phenom Software Engineer Trainee interview -

  1. What is hoisting in javascr...read more
  2. Basics of front ...read more
  3. About personal...read more

Tell us how to improve this page.

Phenom Software Engineer Trainee Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Phenom Software Engineer Trainee Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

4.5

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Product Development Engineer
201 salaries
unlock blur

₹6 L/yr - ₹21.2 L/yr

Software Engineer
114 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Product Development Engineer 2
94 salaries
unlock blur

₹13.3 L/yr - ₹32 L/yr

Product Development Engineer 1
76 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Product Data Analyst
34 salaries
unlock blur

₹2.7 L/yr - ₹5.2 L/yr

Explore more salaries
Compare Phenom with

Thomson Reuters

4.1
Compare

Chetu

3.3
Compare

EbixCash Limited

4.0
Compare

eClinicalWorks

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