Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Philips Innovation Campus Softwaretest Engineer Interview Questions, Process, and Tips

Updated 7 Feb 2024

Philips Innovation Campus Softwaretest Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain Defect life cycle
  • Ans. 

    Defect life cycle is the process of identifying, reporting, fixing, and verifying software defects.

    • Defect is identified by testers during testing phase

    • Defect is reported to the development team

    • Development team fixes the defect

    • Fixed defect is retested by testers

    • If defect is not resolved, it goes back to development team

    • Once defect is resolved, it is closed

  • Answered by AI
  • Q2. Write test case for login screen
  • Ans. 

    Test case for login screen

    • Verify that the login screen is displayed correctly

    • Verify that the username and password fields are present

    • Verify that the login button is enabled only when both fields are filled

    • Verify that an error message is displayed for invalid credentials

    • Verify that the user is redirected to the home page after successful login

  • Answered by AI
  • Q3. What is Agile testing?
  • Ans. 

    Agile testing is a software testing approach that follows the principles of Agile development.

    • Agile testing is an iterative and incremental testing process.

    • It involves continuous collaboration between developers, testers, and stakeholders.

    • Testing is done in parallel with development to ensure early feedback.

    • Testers adapt to changing requirements and deliverables.

    • Automation plays a crucial role in Agile testing.

    • Examples

  • Answered by AI
  • Q4. What is roles and responsibilities in your current project
Round 2 - Technical 

(2 Questions)

  • Q1. Explain SDLC .. ?
  • Ans. 

    SDLC stands for Software Development Life Cycle. It is a process used to design, develop, test, and maintain software.

    • SDLC is a structured approach to software development.

    • It consists of several phases including requirements gathering, design, coding, testing, and maintenance.

    • Each phase has specific activities and deliverables.

    • SDLC models include Waterfall, Agile, and DevOps.

    • It ensures the quality and reliability of so

  • Answered by AI
  • Q2. Explain Software test lifecycle
  • Ans. 

    Software test lifecycle is a process that includes planning, designing, executing, and evaluating tests to ensure software quality.

    • The lifecycle begins with test planning, where test objectives, scope, and resources are defined.

    • Next, test design involves creating test cases and test data based on requirements and specifications.

    • Test execution involves running the tests and recording the results.

    • After execution, test ev...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Round 1 - Aptitude Test 

Quite easy and straight forward

Round 2 - One-on-one 

(2 Questions)

  • Q1. Sort a array of integers
  • Ans. 

    Sort an array of integers

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort

    • Consider the size of the array and the efficiency of the algorithm

    • Check for edge cases like empty arrays or arrays with only one element

  • Answered by AI
  • Q2. Remove element from doubly linked list
  • Ans. 

    To remove an element from a doubly linked list, we need to update the pointers of the previous and next nodes.

    • Find the node to be removed

    • Update the pointers of the previous and next nodes to skip the node to be removed

    • Free the memory occupied by the removed node

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What will you do if you have a conflict with manger
  • Q2. How good are you at multitasking

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer to the point. Tell the recruiter if you do not know the answers

Skills evaluated in this interview

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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Describe binary tree
  • Ans. 

    A binary tree is a hierarchical data structure in which each node has at most two children.

    • Consists of nodes connected by edges

    • Each node can have at most two children, referred to as left child and right child

    • The left child is smaller than the parent node, while the right child is greater

    • Used for efficient searching, sorting, and organizing data

  • Answered by AI
  • Q2. How to validate ip addres?
  • Ans. 

    To validate an IP address, check if it consists of four numbers separated by periods, each number being between 0 and 255.

    • Split the IP address string by periods to get an array of four numbers

    • Check if the array length is 4

    • Loop through each number in the array and check if it is between 0 and 255

    • If any number is outside the valid range, the IP address is invalid

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - learn about algorithm and data structure, you can choose interview programming language

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

DSA, puzzles, DBMS, OD, and networking

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is interrupt vector table
  • Ans. 

    Interrupt vector table is a data structure that maps interrupt numbers to their corresponding interrupt service routines.

    • It is used in microcontrollers and operating systems to handle interrupts.

    • Each entry in the table contains the address of the interrupt service routine for a specific interrupt.

    • When an interrupt occurs, the processor looks up the corresponding entry in the table to find the address of the ISR to exec...

  • Answered by AI
  • Q2. C program to pass array in function
  • Ans. 

    Passing array of strings in a C function

    • Declare the function prototype with array parameter

    • Pass the array as argument when calling the function

    • Access elements of the array within the function

    • Example: void printStrings(char *strings[], int size) { }

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Read Tree & graph in detail
Round 3 - Coding Test 

Read DP in more detail

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain your framework structure
  • Ans. 

    My framework structure is based on a modular approach with reusable components and clear separation of concerns.

    • Modular design with separate modules for different functionalities

    • Reusable components to avoid duplication of code

    • Clear separation of concerns for easy maintenance and scalability

  • Answered by AI
  • Q2. What are waits in selenium you use in your project
  • Ans. 

    Waits in Selenium are used to ensure that the automation script waits for a certain condition to be met before proceeding.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to be met before proceeding.

    • Fluent Wait: Waits for a condition with a specified frequency of checking.

    • Thread.sleep(): Pauses the script execution for a specified am

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

Self introduction
About the software companies how to development

Round 2 - HR 

(1 Question)

  • Q1. Explain the project details on college Why you intrest in this job

Interview Preparation Tips

Topics to prepare for IBM Softwaretest Engineer interview:
  • Social Media Marketing
  • Environment Management
Interview preparation tips for other job seekers - I am fresher and i don't know how to face that and it's my first interview so i advice to you and i hope you hiring me
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

The test was conducted on Hackerrank platform. It had 2 sections. First section had 6 coding questions. Second section had 10 McQs that checked our CS fundamentals. Overall the difficulty level was moderate to hard level.

Round 2 - Technical 

(1 Question)

  • Q1. 1. Few questions on the projects like the purpose and tech stack. 2. Process concepts. 3. Segmentation and fragmentation. 4. Delete elements from linked list 5. Bit manipulation 6. little endian to big end...
Round 3 - HR 

(2 Questions)

  • Q1. Basic questions related to family and hobbies
  • Q2. Question from Resume based on skills and tools mentioned in it

Interview Preparation Tips

Topics to prepare for IBM Softwaretest Engineer interview:
  • Array
  • Linked list
  • OS
  • bit manipulation
Interview preparation tips for other job seekers - Be thorough in your fundamentals and confident enough while answering.

I applied via Company Website and was interviewed in Dec 2021. 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is tnterepts in oops concept
  • Q2. Code apply in any program
  • Ans. 

    Code can be applied in any program as long as it is compatible with the programming language and follows best practices.

    • Code can be reused in different programs to save time and effort.

    • Code should be modular and well-organized to make it easier to apply in different programs.

    • Code should be tested thoroughly to ensure it works correctly in different programs.

    • Code should follow best practices and coding standards to make...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - i am not qualified in infosys, choose good communication skills
Contribute & help others!
anonymous
You can choose to be anonymous

Philips Innovation Campus Interview FAQs

How many rounds are there in Philips Innovation Campus Softwaretest Engineer interview?
Philips Innovation Campus interview process usually has 2 rounds. The most common rounds in the Philips Innovation Campus interview process are Technical.
What are the top questions asked in Philips Innovation Campus Softwaretest Engineer interview?

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

  1. What is Agile testi...read more
  2. Write test case for login scr...read more
  3. Explain Software test lifecy...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Celebal Technologies

No Interviews

INTERVIEWS

Bridge Group Solutions

No Interviews

INTERVIEWS

Bridge Group Solutions

No Interviews

INTERVIEWS

Philips Innovation Campus

No Interviews

INTERVIEWS

BNP Paribas India Solutions

No Interviews

INTERVIEWS

BNP Paribas India Solutions

No Interviews

INTERVIEWS

BNP Paribas India Solutions

No Interviews

INTERVIEWS

Celebal Technologies

No Interviews

Tell us how to improve this page.

Philips Innovation Campus Softwaretest Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Philips Innovation Campus Softwaretest Engineer Salary
based on 48 salaries
₹4.8 L/yr - ₹18 L/yr
92% more than the average Softwaretest Engineer Salary in India
View more details
Software Technologist 1
288 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
205 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Technologist 2
176 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
163 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
130 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Philips Innovation Campus with

GE Healthcare

4.0
Compare

Siemens Healthineers

4.0
Compare

Honeywell Technology Solutions

3.8
Compare

Bosch

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent