Upload Button Icon Add office photos

Filter interviews by

Philips Innovation Campus Sde1 Interview Questions and Answers

Updated 5 Oct 2022

Philips Innovation Campus Sde1 Interview Experiences

2 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 5 Oct 2022

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 

In 1 hr required to do 30 mcq and 1 coding question

Round 3 - Technical 

(1 Question)

  • Q1. Find 2nd max by sql, do Fibonacci series
  • Ans. 

    SQL query to find 2nd max and Fibonacci series implementation

    • For finding 2nd max, use ORDER BY and LIMIT in SQL query

    • For Fibonacci series, use a loop or recursive function

    • Fibonacci series starts with 0, 1 and each subsequent number is the sum of the previous two

    • Example SQL query: SELECT MAX(column_name) FROM table_name WHERE column_name < (SELECT MAX(column_name) FROM table_name)

    • Example Fibonacci series: 0, 1, 1, 2, 3,

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Question related to project and discussion related to technology in resume in somewhat deep

Interview Preparation Tips

Interview preparation tips for other job seekers - Do basics clear and make shure to revise all technology written in resume

Skills evaluated in this interview

Sde1 Interview Questions & Answers

user image Anonymous

posted on 12 Apr 2022

I applied via Company Website and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Assignment 

Participated in a Hackathon.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics well if you are a fresher.

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent proces ... read more
Q4. Given one point and circle how will you find if it's inside circl ... read more
asked in Amazon
Q5. N queen problem with problem statement and dry running of code wi ... read more

Interview questions from similar companies

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

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
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Binary search Merg sorting algorithm Minimum n maximum number in an array list Core java question Oops tricky code snippets Architecture questions about restful and Microservices
  • Q2. Deep copy and shallow copy Interviewer test your problem solving attitude and response not the perfect output
  • Q3. Array in descending order code
  • Ans. 

    Sort an array of strings in descending order

    • Use the sort() method with a custom compare function to sort the array in descending order

    • Example: ['apple', 'banana', 'cherry'].sort((a, b) => b.localeCompare(a)) will result in ['cherry', 'banana', 'apple']

  • Answered by AI
  • Q4. Comparator and comparable interface
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me something about your projects
  • Ans. 

    I have worked on various projects including a mobile app for tracking fitness goals and a web application for managing inventory.

    • Developed a mobile app using React Native to track fitness goals and provide workout plans

    • Built a web application using Angular for managing inventory and tracking sales

    • Implemented RESTful APIs for communication between frontend and backend systems

  • Answered by AI
  • Q2. OS,DBMS questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. You are perfect fit and you are hires
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About previous projects
  • Q2. Basic technical questions

Philips Innovation Campus Interview FAQs

How many rounds are there in Philips Innovation Campus Sde1 interview?
Philips Innovation Campus interview process usually has 3 rounds. The most common rounds in the Philips Innovation Campus interview process are Resume Shortlist, Technical and Assignment.

Tell us how to improve this page.

People are getting interviews through

based on 1 Philips Innovation Campus interview
Company Website
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.2k 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
 • 265 Interviews
Samsung Research Interview Questions
3.2
 • 125 Interviews
View all
Software Technologist 1
282 salaries
unlock blur

₹10.1 L/yr - ₹29 L/yr

Software Engineer
212 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Software Technologist 2
176 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