Upload Button Icon Add office photos

Filter interviews by

Philips Innovation Campus Software Engineer Intern Interview Questions, Process, and Tips

Updated 8 May 2024

Top Philips Innovation Campus Software Engineer Intern Interview Questions and Answers

Philips Innovation Campus Software Engineer Intern Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

DSA based 1 ques and some mcqs on cs funda

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse String without using inbuilt
  • Ans. 

    Reverse a string without using inbuilt functions

    • Create a new array to store the reversed string

    • Iterate through the original string from end to start and append each character to the new array

    • Join the characters in the new array to form the reversed string

  • Answered by AI
  • Q2. Find mid of linkedlist
  • Ans. 

    To find the mid of a linked list, use two pointers - one moving at double the speed of the other.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move the slow pointer by one node and the fast pointer by two nodes until the fast pointer reaches the end of the list.

    • The node pointed to by the slow pointer at this point is the mid of the linked list.

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Apr 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 tips
Round 2 - Coding Test 

It was online assessment taken on Mercer mettl. It contained 10 MCQ from object oriented programming, computer networks, DBMS, os each. 1 coding question of medium level based on permutation and combinations. The assessment was of 1 hr.

Round 3 - One-on-one 

(3 Questions)

  • Q1. Online interview on Microsoft teams, It was mix interviewer asked about dsa, project, computer fundamentals. 1. Implement stack using linked list and then some follow up question like how to keep track of ...
  • Q2. 2. What are the 4 pillars of object oriented programming explain in detail.
  • Ans. 

    The 4 pillars of object oriented programming are encapsulation, inheritance, polymorphism, and abstraction.

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

    • Inheritance: Creating new classes based on existing classes, allowing for code reuse.

    • Polymorphism: The ability for objects of different classes to respond to the same message.

    • Abstraction: Hiding the complex implementation details

  • Answered by AI
  • Q3. What is difference between mongodb and SQL
  • Ans. 

    MongoDB is a NoSQL database while SQL is a relational database management system.

    • MongoDB is schema-less, allowing for flexible data models.

    • SQL databases use structured query language for defining and manipulating data.

    • MongoDB is horizontally scalable, while SQL databases are vertically scalable.

    • SQL databases are better suited for complex queries and joins.

    • MongoDB is commonly used for big data and real-time applications...

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. This round was all about behavioral questions, why Philips, where do you see yourself in 5 years,
  • Q2. Will you be willing to learn new technology if requirement is there?
  • Q3. How much will you rate yourself on C++? As majority of work is in C++ and C#
  • Q4. Will you be willing to shift to the Bangalore city?

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview was on campus for software engineer intern. For this role you need ->
1 DSA because it is the most important, learn dsa using depth first search, go through all the topics first learn theory properly then solve questions, Because questions are not of hard level they are easy to medium but they questions cover all dsa topics.
2 computer fundamentals - OOPS, Networking, OS,DBMS
3 make at least 2 projects, technology doesn't matter make them using any technology but you should be able to explain them properly
4 Learn speaking skills, because your learning is of no use if you are not able to explain properly.
5 After learning any topic or any technology go to interview questions of that particular topic/technology. This is most important because this way you will understand that what are the questions asked, how to give answer.
6 Practice Practice Practice. There is nothing new in interview process majority of questions are repeated and those which are not, they are just slightly modified from standard questions if you practice well you will be able to answer.

Skills evaluated in this interview

Software Engineer Intern Interview Questions Asked at Other Companies

Q1. Check if two trees are MirrorYou are given two arbitrary binary t ... read more
asked in NCR Voyix
Q2. Search In Rotated Sorted ArrayYou have been given a sorted array/ ... read more
Q3. Connect N Ropes With Minimum CostYou have been given 'N' ropes of ... read more
Q4. Zero MatrixYou are given a matrix 'MATRIX' of dimension 'N' x 'M' ... read more
Q5. Partition a set into two subsets such that the difference of subs ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why do you want to work here?
  • Q2. Why do you want to work as a software engineer intern?

Interview Preparation Tips

Interview preparation tips for other job seekers - practice basic DSA questions (easy) and basic concepts in programming like object oriented programming, recursion, easy debugging questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Technical questions based on my resume, coding, project architect, etc.
Round 2 - One-on-one 

(1 Question)

  • Q1. System design round. LLD and HLD.
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial with a little bit of technical. Work ethics, vision and ctc expectations.
Round 4 - HR 

(1 Question)

  • Q1. Compensation discussion.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They asked easy to medium DSA . It includes arrays, strings, recursion.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy process
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Self introduction
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 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 - Technical 

(6 Questions)

  • Q1. React hooks, Explain using code
  • Ans. 

    React hooks are functions that let you use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components

    • useState() is a hook that allows you to add state to functional components

    • useEffect() is a hook that allows you to perform side effects in functional components

    • useContext() is a hook that allows you to use the context API in functio

  • Answered by AI
  • Q2. Factory Patterns?
  • Q3. Liskov Substitution Principle
  • Ans. 

    Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Subtypes must be substitutable for their base types.

    • Derived classes must be able to replace their base classes without affecting the program's behavior.

    • Violating this principle can lead to unexpected behavior and errors in the code.

    • Example: If a program expec...

  • Answered by AI
  • Q4. Oops Concept and give examples
  • Ans. 

    Oops concept is a programming paradigm that focuses on objects and classes.

    • Oops stands for Object-Oriented Programming

    • Key concepts include inheritance, encapsulation, polymorphism, and abstraction

    • Examples: Class Car with properties like make, model, and methods like start(), stop()

    • Example: Inheritance - Class SUV extends Car and adds property numSeats

  • Answered by AI
  • Q5. JQuery - Ajax mechanisms
  • Q6. Docker and Kubernetes - Azure concepts

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is the use of button when link can submit the form?
  • Ans. 

    Buttons are used when an action needs to be performed, while links are used for navigation.

    • Buttons are more suitable for actions like submitting a form, saving data, or triggering a function.

    • Links are used to navigate to different pages or sections within a website.

    • Buttons provide visual feedback when clicked, while links do not.

    • Buttons can be styled and customized more easily than links.

    • Buttons can have different stat

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How do you optimize a SQL procedure with 5000 lines in code?
  • Ans. 

    Optimize a SQL procedure with 5000 lines of code by identifying bottlenecks and implementing performance improvements.

    • Identify and analyze the most time-consuming parts of the procedure

    • Optimize queries by adding appropriate indexes, rewriting queries, or using query hints

    • Break down the procedure into smaller, more manageable parts

    • Use temporary tables or table variables to reduce the amount of data processed at once

    • Cons...

  • Answered by AI
  • Q2. Keep SQL procedures short, use multiple small procedure with specific functionality being used, avoid use of temp tables and Joins, use select statements wisely. do not use sub queries, do not use dynamic ...
  • Ans. 

    To optimize SQL procedures, keep them short, use small procedures with specific functionality, avoid temp tables and joins, use select statements wisely, avoid subqueries and dynamic SQL.

    • Break down complex procedures into smaller ones with specific functionality

    • Avoid using temporary tables and joins whenever possible

    • Use select statements wisely to retrieve only the necessary data

    • Avoid subqueries and find alternative ap...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - don't wear casual clothes in the interview. I was wearing photo-chromatic glasses which turned dark in sunlight, interviewer had objection to that as well. One girl/newly married lady wearing saree for interview was asked personal questions on the interview day, which I felt was unnecessary. She and I both got selected eventually but the interview process was horrible.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tech Basic Quesions and Related to stack mostly on .net Sql and Angular
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basics of C++. Solve some problem by given complexity. Find the bugs in code.

Round 2 - Technical 

(2 Questions)

  • Q1. Question from your last project.
  • Q2. Design pattern in C++.
  • Ans. 

    Design patterns in C++ are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable code.

    • Examples of design patterns in C++ include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has a specific purpose and can be applied in different scenarios.

  • Answered by AI

Skills evaluated in this interview

Philips Innovation Campus Interview FAQs

How many rounds are there in Philips Innovation Campus Software Engineer Intern interview?
Philips Innovation Campus interview process usually has 3 rounds. The most common rounds in the Philips Innovation Campus interview process are Coding Test, One-on-one Round and HR.
What are the top questions asked in Philips Innovation Campus Software Engineer Intern interview?

Some of the top questions asked at the Philips Innovation Campus Software Engineer Intern interview -

  1. 2. What are the 4 pillars of object oriented programming explain in deta...read more
  2. What is difference between mongodb and ...read more
  3. Reverse String without using inbu...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Philips Innovation Campus interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Bosch Interview Questions
4.2
 • 328 Interviews
R1 RCM Interview Questions
3.9
 • 266 Interviews
Max Healthcare Interview Questions
4.1
 • 130 Interviews
View all
Philips Innovation Campus Software Engineer Intern Salary
based on 7 salaries
₹3 L/yr - ₹5.4 L/yr
32% less than the average Software Engineer Intern Salary in India
View more details
Software Technologist 1
282 salaries
unlock blur

₹10.1 L/yr - ₹29 L/yr

Software Engineer
215 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Software Technologist 2
171 salaries
unlock blur

₹14.9 L/yr - ₹34.7 L/yr

Software Engineer2
158 salaries
unlock blur

₹8.5 L/yr - ₹18.8 L/yr

Senior Software Engineer
132 salaries
unlock blur

₹7.5 L/yr - ₹23.6 L/yr

Explore more salaries
Compare Philips Innovation Campus with

GE Healthcare

4.1
Compare

Siemens Healthineers

4.0
Compare

Honeywell Technology Solutions

3.8
Compare

Bosch

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview