Upload Button Icon Add office photos

Philips

Compare button icon Compare button icon Compare

Filter interviews by

Philips Senior Architect Interview Questions and Answers

Updated 14 Nov 2023

Philips Senior Architect Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed before Nov 2022. There were 3 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 

(2 Questions)

  • Q1. Architecture and design
  • Q2. Coding and algorithms
Round 3 - HR 

(1 Question)

  • Q1. Work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for full hands on interview sessions

Senior Architect Interview Questions & Answers

user image Harish Muleva

posted on 16 Oct 2020

Interview Questionnaire 

2 Questions

  • Q1. Most difficult situation face in any project
  • Q2. Design lift system for office building. There are more than one lift and more than 4 floor
  • Ans. 

    Design a lift system for an office building with multiple lifts and floors.

    • Determine the number of lifts required based on the building size and occupancy.

    • Consider the traffic flow and peak hours to determine the lift capacity.

    • Install a control system to manage the lift operation and reduce waiting time.

    • Ensure safety features such as emergency brakes, backup power supply, and fire alarms.

    • Provide clear signage and instr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple discussion about work

Senior Architect Interview Questions Asked at Other Companies

Q1. What is a typical cladding material. What are the types and how a ... read more
Q2. How will you increase performance of a server to accept a million ... read more
Q3. What is the techinical method to budget manhours for a specific p ... read more
asked in Majesco
Q4. What is hands on experience ? Microservice design pattern, securi ... read more
Q5. What is a Girt and Girt distance. How is sheeting fixed on a Girt ... read more

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. C,c++ questions like oops
Round 2 - Coding Test 

Networking and linux internals

Interview Preparation Tips

Interview preparation tips for other job seekers - easy to crack the interview, just be mindful

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

Interview Questionnaire 

2 Questions

  • Q1. Questions regarding projects and DSA
  • Q2. Prepare your projects and CV well if if going into research profile, prepare DSA well if going into developer profile.

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

Have to attempt 2 programming questions within 2:30 hours. Can take any time over the weekend. Relatively easy problems. Questions were long, but the solution code was small.

  • Q1. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. 

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette.

    • Iterate through the buildings and create a list of critical points (x, y) where the height changes.

    • Sort the critical points based on x-coordinate and process them to generate the skyline.

    • Merge consecutive horizontal segments of equal height to ensure no duplicates in the output.

  • Answered by AI
  • Q2. 

    MergeSort Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to sort the list using the 'Merge Sort' algorithm.

    Input:

    The input consists of a single line contain...
  • Ans. 

    Sort a Singly Linked List using Merge Sort algorithm.

    • Implement the Merge Sort algorithm for linked lists.

    • Divide the list into two halves, sort each half recursively, then merge them.

    • Use a fast and slow pointer to find the middle of the list for splitting.

    • Handle the base case of a single node or empty list.

    • Example: Input: 4 3 2 1 -1, Output: 1 2 3 4

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 240 Minutes
Round difficulty - Medium

Had to solve 1 programming question in 4 hours. It was in the morning on a weekend. The environment was not so good. It was a small institute and got very crowded. The platform was also buggy. but the question was not difficult. Was able to solve it in just 1 hour and leave.

  • Q1. 

    Batch Photography Problem

    Alex has acquired a machine that can photocopy photos in batches of a minimum size 'K'. Given 'N' photos with resolutions represented in an integer array photos, the machine prod...

  • Ans. 

    Minimize maximum error by splitting photos into batches of size at least 'K'.

    • Sort the array of resolutions in ascending order.

    • Iterate through the array and calculate the error for each possible batch.

    • Return the minimum possible maximum error found.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was in the afternoon. The interviewer basically asked me what technologies I have worked on. Checked my knowledge of those technologies with simple questions. Told me what I'll be working on if I get selected.

  • Q1. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Maintain left pointer for 0s, right pointer for 2s, and current pointer for traversal.

    • Example: If current element is 0, swap it with element at left pointer and increment both pointers.

    • E...

  • Answered by AI
Round 4 - Video Call 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

It was also in the afternoon. The interviewer was the member of the team I'll be working on if I get selected. He asked me some basic questions about related technologies.
Gave me 2-3 DS & Algo problems and asked me to solve them.

  • Q1. 

    Array Sum Calculation

    Calculate the sum of all elements in an array of length N.

    Input:

    Line 1: An integer N indicating the size of the array.
    Line 2: N integers, the elements of the array, separated by ...
  • Ans. 

    Calculate the sum of all elements in an array of length N.

    • Iterate through the array and add each element to a running sum.

    • Return the final sum as the output.

  • Answered by AI
  • Q2. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph where each character is a node and there is a directed edge from character 'a' to character 'b' if 'a' comes before 'b' in any word.

    • Perform a topological sort on the graph to get the order of characters.

    • Return the order as a string in lexicographical order.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo CriteriaSamsung R&D Institute interview preparation:Topics to prepare for the interview - Recursion, Backtracking, Dynamic Programming, Trees, ArrayTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : It's a Daily process. Not weekly, Not monthly. DAILY!
Tip 2 : Take part in Online Contests. HackerEarth is best for Contests posted by companies.
Tip 3 : Even after you have solved some problem, try to find a better solution for it online. Companies don't want a solution, they want optimized solution.

Application resume tips for other job seekers

Tip 1 : Modify resume for each job you are applying for. It should show why you are suitable for that particular job.
Tip 2 : Remove any extra things like interests and hobbies. No one cares.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Ballon Burst Problem
  • Ans. 

    Balloon Burst Problem - Given n balloons, each with a number of coins, maximize the number of coins collected by bursting the balloons.

    • Use dynamic programming to solve the problem

    • Consider each balloon as the last balloon to be burst

    • Calculate the maximum coins that can be collected for each subarray of balloons

    • Use the calculated values to find the maximum coins for the entire array

  • Answered by AI
  • Q2. N queen Problem
  • Q3. OS, DBMS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Pratcise DS and OS and DBMS and OOPS and have 2 to 3 projects

Skills evaluated in this interview

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Hard

This round had 3 preety good questions to be solved under 2 hours . The first question was from Graphs and DSU , the second question was related to DP and the third one was from Recursion.

  • Q1. 

    Most Stones Removed with Same Row or Column

    On a 2-D plane, there are ‘N’ stones placed at some integer coordinate points. Each coordinate point can have at most one stone. A stone can be removed if it sh...

  • Ans. 

    Given a 2-D plane with stones at integer coordinate points, find the maximum number of stones that can be removed by sharing the same row or column.

    • Iterate through the stones and create a graph where stones in the same row or column are connected.

    • Use depth-first search (DFS) to find connected components in the graph.

    • The maximum number of stones that can be removed is the total number of stones minus the number of conne

  • Answered by AI
  • Q2. 

    Gold Mine Problem Statement

    You are provided with a gold mine, represented as a 2-dimensional matrix of size N x M with N rows and M columns. Each cell in this matrix contains a positive integer represent...

  • Ans. 

    The task is to determine the maximum amount of gold a miner can collect by moving in allowed directions in a gold mine represented as a 2D matrix.

    • Create a 2D DP array to store the maximum gold collected at each cell

    • Iterate through the matrix from left to right and update the DP array based on the allowed directions

    • Return the maximum value in the last column of the DP array as the final result

  • Answered by AI
  • Q3. 

    All Possible Balanced Parentheses Problem Statement

    Given a positive integer N, generate all possible sequences of balanced parentheses using N pairs of parentheses.

    A sequence of brackets is called bala...

  • Ans. 

    Generate all possible sequences of balanced parentheses using N pairs of parentheses.

    • Use backtracking to generate all possible combinations of balanced parentheses.

    • Keep track of the number of opening and closing parentheses used.

    • Add opening parentheses if there are remaining, and add closing parentheses only if there are more opening parentheses than closing.

    • Recursively generate all valid combinations.

    • Return the list o

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 questions from DSA. Both the questions were preety straightforward and were asked to check my implementation skills and how well do I handle Edge Cases for tricky problems.

  • Q1. 

    Stack using Two Queues Problem Statement

    Develop a Stack Data Structure to store integer values using two Queues internally.

    Your stack implementation should provide these public functions:

    Explanation:

    ...
  • Ans. 

    Implement a stack using two queues to store integer values.

    • Use two queues to simulate stack operations: push elements to one queue, then move all elements to the other queue to simulate pop and top operations.

    • Maintain the size of the stack and check for empty stack using the size of the queues.

    • Handle edge cases such as popping or getting top element from an empty stack.

    • Ensure the implementation follows the specified pu...

  • Answered by AI
  • Q2. 

    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.

    Inpu...

  • Ans. 

    Rotate a square matrix by 90 degrees in an anti-clockwise direction using constant extra space.

    • Iterate through each layer of the matrix and swap elements in groups of 4

    • Transpose the matrix and then reverse each row to achieve the rotation

    • Ensure to handle edge cases like odd-sized matrices

  • Answered by AI
Round 3 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round also had 2 questions related to DSA where I was first expected to explain my approaches and then discuss the time and space complexities of my solution. After that , I was asked some core concepts related to OOPS and OS.

  • Q1. 

    Triplets with Given Sum

    Given an array ARR consisting of N integers, find all distinct triplets in the array that add up to a given number K.

    Example:

    Input:
    T = 2
    N = 5
    ARR = [1, 2, 3, 4, 5]
    K = 9
    N = 4
    ...
  • Ans. 

    Find all distinct triplets in an array that add up to a given number.

    • Use three nested loops to iterate through all possible triplets.

    • Sort the array first to easily skip duplicates.

    • Use two-pointer technique to find the remaining element for each triplet.

    • Handle edge cases like empty list or no triplet summing up to K.

  • Answered by AI
  • Q2. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    Calculate the total amount of rainwater that can be trapped between given elevations in an array.

    • Iterate through the array and calculate the maximum height on the left and right of each bar.

    • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.

    • Sum up the trapped water at each bar to get the total trapped water for the entire array.

  • Answered by AI
  • Q3. What is the Diamond Problem in C++ and how can it be resolved?
  • Ans. 

    Diamond Problem is a multiple inheritance issue in C++ where a class inherits from two classes that have a common base class.

    • Diamond Problem occurs when a class inherits from two classes that have a common base class, leading to ambiguity in accessing members.

    • It can be resolved in C++ using virtual inheritance, where the common base class is inherited virtually to avoid duplicate copies of base class members.

    • Example: c...

  • Answered by AI
  • Q4. What is thrashing in operating systems?
  • Ans. 

    Thrashing in operating systems occurs when the system is spending more time swapping data between memory and disk than actually executing tasks.

    • Occurs when the system is constantly swapping data between memory and disk

    • Causes a decrease in system performance as it spends more time on swapping than executing tasks

    • Usually happens when the system does not have enough physical memory to handle the workload efficiently

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This was my last round and I hoped it to go good just like the other rounds. The interviewer was very straight to point and professional. The interview lasted for 30 minutes.

  • Q1. What is something about you that is not included in your resume?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASamsung interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in May 2017.

Interview Questionnaire 

4 Questions

  • Q1. Why is string immutable
  • Ans. 

    String is immutable because it ensures data integrity and allows for efficient memory management.

    • Immutable strings prevent accidental modification of data.

    • Immutable strings can be easily shared and reused, improving memory efficiency.

    • Immutable strings enable efficient string interning and caching.

    • Immutable strings support thread safety in concurrent environments.

  • Answered by AI
  • Q2. Do @requestparam has default value
  • Ans. 

    Yes, @RequestParam has a default value if not specified.

    • If a @RequestParam is not provided in the request, it will use its default value.

    • The default value can be set using the 'defaultValue' attribute of @RequestParam annotation.

    • If no default value is specified, the parameter will be considered as required and an exception will be thrown if not provided.

  • Answered by AI
  • Q3. Singleton and prototype
  • Q4. Why abstract class is required
  • Ans. 

    Abstract classes are required to provide a common interface and share code among related classes.

    • Abstract classes allow for code reusability and promote modular design.

    • They provide a common interface for a group of related classes.

    • Abstract classes can define abstract methods that must be implemented by subclasses.

    • They can also provide default implementations for common methods.

    • Abstract classes cannot be instantiated, b

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions & Answers

Samsung user image Gaurav Srikant Mokhasi

posted on 3 Dec 2015

Interview Preparation Tips

Round: PRE PLACEMENT OFFER
Experience: Interns (both CS and IT) were selected in my third year. Pre-placement offers were rolled out to 16 of us which was roughly a conversion ratio of 1:3. A couple of ECE hires were added when SRI-B visited campus later.

General Tips: If you're in CS or IT, this is the only format your resume should be in: -----
Take your internship seriously. Have fun and all but also get your project done. It's not the end of the world if you don't get a PPO. Campus placements are tension-filled, no doubt, but a lot of people get equally good if not better jobs after missing out on PPOs.
Make sure you talk to your manager about the PPO process. She will be the one giving you your final review. So ensure that she knows you want the job. Prepare a fancy presentation for the HR. By fancy, I mean slick and professional. Think Apple, not flashy Microsofty graphics and stupid word art.
Skill Tips: Google GSAT (Global Samsung Aptitude Test) a week before the test and make sure you practice some similar CAT type questions. Questions are of medium difficulty and time management is a real issue (most of us were unable to finish properly). - I didn't have to use these but I've heard good things about codechef/topCoder and books such as Cracking the Coding Interview by Gayle Laakmann McDowell.
Skills:
College Name: NIT Surathkal

Philips Interview FAQs

How many rounds are there in Philips Senior Architect interview?
Philips interview process usually has 3 rounds. The most common rounds in the Philips interview process are HR, Resume Shortlist and Technical.
How to prepare for Philips Senior Architect interview?
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, Architecture, Computer science, Agile and Analytical.
What are the top questions asked in Philips Senior Architect interview?

Some of the top questions asked at the Philips Senior Architect interview -

  1. Design lift system for office building. There are more than one lift and more t...read more
  2. Architecture and des...read more
  3. Coding and algorit...read more

Tell us how to improve this page.

Philips Senior Architect Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Samsung Interview Questions
3.9
 • 550 Interviews
Dell Interview Questions
3.9
 • 387 Interviews
HARMAN Interview Questions
3.7
 • 263 Interviews
OPPO Interview Questions
4.0
 • 213 Interviews
LG Electronics Interview Questions
4.0
 • 200 Interviews
Vivo Interview Questions
4.1
 • 197 Interviews
Daikin Interview Questions
4.1
 • 150 Interviews
Apple Interview Questions
4.3
 • 139 Interviews
Samsung Research Interview Questions
3.1
 • 132 Interviews
View all
Philips Senior Architect Salary
based on 44 salaries
₹30 L/yr - ₹70 L/yr
73% more than the average Senior Architect Salary in India
View more details

Philips Senior Architect Reviews and Ratings

based on 7 reviews

3.1/5

Rating in categories

2.6

Skill development

3.8

Work-life balance

3.0

Salary

2.6

Job security

1.7

Company culture

2.1

Promotions

2.4

Work satisfaction

Explore 7 Reviews and Ratings
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