Upload Button Icon Add office photos

Philips

Compare button icon Compare button icon Compare

Filter interviews by

Philips Intern Interview Questions and Answers for Freshers

Updated 20 Nov 2024

Philips Intern Interview Experiences for Freshers

3 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 & 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 for undefined

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Accenture
Q3. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more
asked in Deloitte
Q4. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q5. Huffman Coding Challenge Given an array ARR of integers containin ... read more

Intern Interview Questions & Answers

user image Anonymous

posted on 8 Aug 2021

Interview Questionnaire 

1 Question

  • Q1. General interaction

Interview questions from similar companies

Intern Interview Questions & Answers

OPPO user image Anonymous

posted on 31 Jan 2021

I applied via Campus Placement

Interview Questionnaire 

1 Question

  • Q1. If the employe completed 35 percent of his work in first 10 days of month means what is the predicted month end Target?
  • Ans. 

    Predicted month end target based on 35% work completed in first 10 days.

    • Assuming the employee works at a consistent pace throughout the month

    • Calculate the remaining work as 65% of the total work

    • Divide the remaining work by the remaining days in the month

    • Add the result to the 35% already completed

    • This gives the predicted month end target

    • For example, if the total work is 100 units, and 35 units are completed in the first...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and cool
Tell answers enthusiastically with due respect

Intern Interview Questions & Answers

Daikin user image Anonymous

posted on 11 Jun 2017

I appeared for an interview before Jun 2016.

Interview Questionnaire 

3 Questions

  • Q1. How was yesterday ?
  • Ans. 

    Yesterday was a productive day filled with meetings and project work.

    • Attended a team meeting in the morning

    • Worked on a project proposal in the afternoon

    • Had a networking event in the evening

  • Answered by AI
  • Q2. Why are letters in a keyboard placed like that ?
  • Ans. 

    The letters on a keyboard are placed in a specific layout called QWERTY, which was designed to prevent typewriter jams.

    • The QWERTY layout was developed by Christopher Sholes in 1873 for typewriters.

    • The layout was designed to separate commonly used letters to reduce the likelihood of jamming.

    • The arrangement of letters was based on the frequency of their use in the English language.

    • The QWERTY layout became popular and was

  • Answered by AI
  • Q3. What do you know about air conditioner ?
  • Ans. 

    An air conditioner is a device that cools and dehumidifies the air in a room or building.

    • Air conditioners work by removing heat and moisture from the air.

    • They use a refrigeration cycle to cool the air.

    • Air conditioners can be used for both residential and commercial purposes.

    • They come in different types such as window units, split systems, and central air conditioning systems.

    • Air conditioners improve indoor air quality ...

  • Answered by AI

Interview Preparation Tips

Round: HR Interview
Experience: I was asked several question related to my cv and other general knowledge and technical questions to measure my suitablity for the job.

Skills: Communication, Excel Skills, Knowledge Of MS Office
College Name: Keshav Mahavidyalaya

Skills evaluated in this interview

I appeared for an interview in Aug 2017.

Interview Preparation Tips

Round: Test
Experience: 20 English questions
Rest of the 40 were quant.
There was a severe shortage of time in this test. English was a piece of cake but the rest of the questions were pretty time consuming.
Tips: Its better to finish those questions first which aren't time consuming.
Duration: 1 hour
Total Questions: 60

Round: Test
Experience: There was one three mark question and two five mark questions.
The three marker was either on linked list or array sorting.
The second question was based on dynamic programming.
The third question was on algorithms and number theory. Eg. My question was to find the units digit in a^b.
You could code in C,C++, Java or C#
Duration: 1 hour 10 minutes
Total Questions: 3

Round: Group Discussion
Experience: It wasn't exactly a group discussion. It was more of extempore. We were given ten minutes to note down points on the topic and each of us had to speak for two minutes. And then at the end there was a brief discussion on the arguments.
Tips: Don't start making philosophical arguments. You are expected to give technical arguments and reasons.
Don't contradict yourself ever. Make your stand on the topic clear and stick to it.
Don't cut off people in the middle. Hear them out.
It's not about who is speaking the most. It's about who is most effective.
Duration: 1 hour

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Whats c
  • Ans. 

    C is a general-purpose programming language developed by Dennis Ritchie in 1972.

    • C is used for developing operating systems, embedded systems, and system software.

    • It is a compiled language and has a low-level memory access.

    • C is the predecessor of many modern programming languages like C++, Java, and Python.

  • Answered by AI
  • Q2. Whats loop
  • Ans. 

    A loop is a programming structure that repeats a set of instructions until a certain condition is met.

    • Loops are used to iterate over a collection of data or to repeat a set of instructions a certain number of times.

    • There are three types of loops in most programming languages: for, while, and do-while.

    • Example: for (int i = 0; i < 10; i++) { // do something }

  • Answered by AI
  • Q3. Why mi good samsung bad

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy peasy interieds

Interview Questionnaire 

1 Question

  • Q1. What's you name

Interview Preparation Tips

Interview preparation tips for other job seekers - See GFG for answers

Intern Interview Questions & Answers

Apple user image Anonymous

posted on 1 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Interview asked about strengths and weaknesses
Round 2 - Technical 

(1 Question)

  • Q1. Questions were about coding

Intern Interview Questions & Answers

Apple user image Anonymous

posted on 11 Oct 2023

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

I applied via Campus Placement

Round 1 - Coding Test 

Hackerrank test, it was simple cuz intern

Round 2 - Technical 

(4 Questions)

  • Q1. They asked to code a website
  • Q2. They asked about projects
  • Q3. Asked about more projects
  • Q4. Asked about C, C++, and other languages, and was asked in detail about mroe technical concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard

Philips Interview FAQs

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

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

  1. List, tuple differe...read more
  2. Python-based simple questions, a few DBMS questions, and some AI/ML. Nothing to...read more
  3. Interview Round - Resume based questions regarding internships, projects and te...read more

Tell us how to improve this page.

Philips Intern Interview Process for Freshers

based on 2 interviews

Interview experience

4
  
Good
View more

Intern Interview Questions from Similar Companies

Samsung Intern Interview Questions
3.9
 • 8 Interviews
Dell Intern Interview Questions
3.9
 • 5 Interviews
HARMAN Intern Interview Questions
3.7
 • 3 Interviews
OPPO Intern Interview Questions
4.0
 • 3 Interviews
Signify Intern Interview Questions
3.5
 • 3 Interviews
Daikin Intern Interview Questions
4.1
 • 2 Interviews
Apple Intern Interview Questions
4.3
 • 2 Interviews
Sony Intern Interview Questions
4.2
 • 2 Interviews
View all
Philips Intern Salary
based on 35 salaries
₹2.1 L/yr - ₹8 L/yr
31% more than the average Intern Salary in India
View more details

Philips Intern Reviews and Ratings

based on 7 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.9

Salary

2.8

Job security

4.9

Company culture

3.1

Promotions

4.9

Work satisfaction

Explore 7 Reviews and Ratings
Software Technologist 1
198 salaries
unlock blur

₹10 L/yr - ₹31.2 L/yr

Software Technologist 2
189 salaries
unlock blur

₹16 L/yr - ₹34 L/yr

Software Engineer
186 salaries
unlock blur

₹6 L/yr - ₹22 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