Upload Button Icon Add office photos

Philips

Compare button icon Compare button icon Compare

Filter interviews by

Philips Interview Questions, Process, and Tips for Freshers

Updated 1 Apr 2025

Top Philips Interview Questions and Answers for Freshers

View all 13 questions

Philips Interview Experiences for Freshers

Popular Designations

19 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Online test with a few behavioral questions and games. Nothing difficult.

Round 2 - Coding Test 

This round included CSE Core MCQs and 2 coding questions. MCQs where moderated and Coding questions were for Leetcode Medium-Hard difficulty.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Interview Round - Resume based questions regarding internships, projects and tech stacks.
  • Q2. Python-based simple questions, a few DBMS questions, and some AI/ML. Nothing too difficult and one-liner answers were expected.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the coding round and make sure not to lie on your resume.

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Array topics - 2 question from this topic
  • Q2. Linkedlist coding problem - 1 problem from this topic
Round 2 - Coding Test 

Sql problem solving - 2 problem from this topic

Round 3 - Behavioral 

(1 Question)

  • Q1. Project discussion - projects you worked on
  • Ans. 

    I have worked on various projects including a web application for a retail company and a mobile app for a fitness tracker.

    • Developed a web application for a retail company to manage inventory and sales

    • Created a mobile app for a fitness tracker to track workouts and progress

    • Collaborated with team members to design and implement features

    • Utilized technologies such as React, Node.js, and MongoDB

  • Answered by AI

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy to answer ,asked mostly on sql and other ml topics

Round 2 - One-on-one 

(2 Questions)

  • Q1. Differencde between sql and nosql
  • Ans. 

    SQL is a relational database management system, while NoSQL is a non-relational database management system.

    • SQL databases are table-based and have a predefined schema, while NoSQL databases are document-based, key-value pairs, graph databases, or wide-column stores.

    • SQL databases are good for complex queries and transactions, while NoSQL databases are better for hierarchical data storage and real-time web applications.

    • Ex...

  • Answered by AI
  • Q2. What are the regularization in ml
  • Ans. 

    Regularization in machine learning is a technique used to prevent overfitting by adding a penalty term to the model's loss function.

    • Regularization helps in reducing the complexity of the model by penalizing large coefficients.

    • Common types of regularization include L1 (Lasso) and L2 (Ridge) regularization.

    • L1 regularization adds the absolute value of the coefficients to the loss function, promoting sparsity.

    • L2 regulariza...

  • Answered by AI

Skills evaluated in this interview

Data Science Intern Interview Questions asked at other Companies

Q1. Rotate Matrix by 90 Degrees Problem Statement Given a square matrix 'MATRIX' of non-negative integers, rotate the matrix by 90 degrees in an anti-clockwise direction using only constant extra space. Input: The first line of input contains a... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Computer science mcqs with a coding question

Round 2 - One-on-one 

(3 Questions)

  • Q1. Oops pillars and their implementations
  • Ans. 

    Oops pillars refer to the principles of Object-Oriented Programming - Inheritance, Encapsulation, and Polymorphism.

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

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability for objects to be treated as instances of their parent class.

  • Answered by AI
  • Q2. Basic array code
  • Q3. What is join and Sql queries
  • Ans. 

    Join is used to combine rows from two or more tables based on a related column between them. SQL queries are used to retrieve data from a database.

    • Join is used to retrieve data from multiple tables based on a related column

    • Types of joins include inner join, outer join, left join, and right join

    • SQL queries are used to manipulate and retrieve data from a database

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.c

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Projects and resume
  • Q2. If you need help from someone in your team, how will you ask?

Skills evaluated in this interview

Technical Intern Interview Questions asked at other Companies

Q1. Coding question: Find the 2nd lowest and 2nd highest elements in an array
View answer (1)

Philips interview questions for popular designations

 Software Technologist 1

 (8)

 Software Developer

 (6)

 Software Engineer

 (5)

 Accounting Specialist

 (4)

 Software Technologist 2

 (4)

 Softwaretest Engineer

 (3)

 Data Scientist

 (3)

 Technical Leadership Program

 (3)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I appeared for an interview in Mar 2024.

Round 1 - Coding Test 

Aptitude and dsa questions

Round 2 - Technical 

(2 Questions)

  • Q1. Sql, Oops, dsa, API and projects were asked
  • Q2. Some sql queries
Round 3 - HR 

(1 Question)

  • Q1. Normal interaction to know about me

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Coding skills should be good

Round 2 - Coding Test 

Basic c and c++ and python and networking

Interview Preparation Tips

Interview preparation tips for other job seekers - behavior and managerial questions and answers

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Jobs at Philips

View all
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Based on 8051 Microcontroller
  • Q2. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - They ask questions based on what you studied in your graduation
And they have their own Microcontroller NXP 8051
Questions revolves around this only

Embedded Firmware Engineer Interview Questions asked at other Companies

Q1. Design the components which are involved in the internal logic circuit of a 7-segment display based on the provided circuit ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Networking based questions.
  • Q2. My previous work exp and projects.

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)

SDE Interview Questions & Answers

user image GYANESH ANAND

posted on 7 Apr 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Internshala

Round 1 - HR 

(1 Question)

  • Q1. Why do you want to join Philips
Round 2 - Aptitude Test 

Nlp discussion around the nlp q and ans

Interview Preparation Tips

Interview preparation tips for other job seekers - Oveall good

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 22 May 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 questions , Prime number and sort list

Round 2 - Technical 

(2 Questions)

  • Q1. Basic python questions
  • Q2. List, tuple difference
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is used for collections of items that may change, tuple for fixed collections.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Informal discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic should be clear

Skills evaluated in this interview

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Philips Interview FAQs

How many rounds are there in Philips interview for freshers?
Philips interview process for freshers usually has 2-3 rounds. The most common rounds in the Philips interview process for freshers are Technical, Coding Test and HR.
How to prepare for Philips interview for freshers?
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 Philips. The most common topics and skills that interviewers at Philips expect are Healthcare, C++, Recruitment, Coding and SDLC.
What are the top questions asked in Philips interview for freshers?

Some of the top questions asked at the Philips interview for freshers -

  1. Write a code to find distance between two points without using data structu...read more
  2. What will you do if you want to do some operation which involves rigorous mathe...read more
  3. How different sections(analitical,C&DS,electronics) of written exam validate a ...read more
How long is the Philips interview process?

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

Tell us how to improve this page.

Philips Interview Process for Freshers

based on 10 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Samsung Interview Questions
3.9
 • 552 Interviews
Dell Interview Questions
3.9
 • 390 Interviews
HARMAN Interview Questions
3.7
 • 264 Interviews
OPPO Interview Questions
4.0
 • 216 Interviews
LG Electronics Interview Questions
4.0
 • 201 Interviews
Vivo Interview Questions
4.1
 • 198 Interviews
Daikin Interview Questions
4.1
 • 152 Interviews
Apple Interview Questions
4.3
 • 140 Interviews
Samsung Research Interview Questions
3.1
 • 132 Interviews
View all

Philips Reviews and Ratings

based on 1.6k reviews

3.8/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.7

Salary

3.5

Job security

3.7

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 1.6k Reviews and Ratings
Sr. Software Manager (Fullstack)

Bangalore / Bengaluru

14-16 Yrs

Not Disclosed

Software Engineer I - Medical imaging

Bangalore / Bengaluru

0-3 Yrs

Not Disclosed

Analytics Manager - Revenue Growth Management

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Explore more jobs
Software Technologist 1
196 salaries
unlock blur

₹10 L/yr - ₹31.2 L/yr

Software Technologist 2
190 salaries
unlock blur

₹16 L/yr - ₹34 L/yr

Software Engineer
188 salaries
unlock blur

₹5.8 L/yr - ₹21.3 L/yr

Senior Accounting Specialist
173 salaries
unlock blur

₹5.6 L/yr - ₹20.2 L/yr

Deputy Manager
160 salaries
unlock blur

₹8.5 L/yr - ₹27 L/yr

Explore more salaries
Compare Philips with

Samsung

3.9
Compare

Vivo

4.1
Compare

OPPO

4.0
Compare

Dell

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