Upload Button Icon Add office photos

Filter interviews by

GE Healthcare Software Engineering Specialist Interview Questions and Answers

Updated 15 Aug 2024

GE Healthcare Software Engineering Specialist Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java collection questions
  • Q2. One DS question
Round 2 - Technical 

(2 Questions)

  • Q1. Complete Core Java questions
  • Q2. Exception handling

Interview Preparation Tips

Topics to prepare for GE Healthcare Software Engineering Specialist interview:
  • Java
  • Data Structures
  • Database
  • Spring Framework

Interview questions from similar companies

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Apr 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic C# and oops questions , mostly on inheritance , abstraction ,encapsulation , properties
  • Q2. Coding questions related to strings finding longest substring without repeating characters , find the count of vowels in string with using dictionary kr hash ( used ascii value approach)
Round 2 - Technical 

(2 Questions)

  • Q1. Mostly on project .
  • Q2. Was asked about design patterns , had to create a design for a simple . How would I structure all the folders classes , interfaces logics etc .
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Linked list graph string to be prepared

Round 2 - Coding Test 

Graph linked list was asked in this round

Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is java script?
  • Ans. 

    JavaScript is a high-level, interpreted programming language used for creating interactive websites.

    • JavaScript is commonly used for client-side web development.

    • It can be used to add interactivity, animations, and dynamic content to websites.

    • JavaScript is often used in conjunction with HTML and CSS.

    • Popular JavaScript frameworks include React, Angular, and Vue.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain js , virtual dom?
  • Ans. 

    JS is a programming language used for web development. Virtual DOM is a concept in React to improve performance.

    • JS (JavaScript) is a popular programming language used for web development.

    • Virtual DOM is a concept in React where a lightweight copy of the actual DOM is created and updated to improve performance.

    • Virtual DOM allows React to efficiently update the actual DOM by only re-rendering components that have changed.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test with full stack in react and node js with advanced topics of javascript and logical questsions

Round 2 - Case Study 

Gave problem statement to solve

Round 3 - Technical 

(1 Question)

  • Q1. Gave some technical and logical questions in react
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

I applied via Walk-in and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Micro service
  • Q2. What is encapsulations, data abstraction, polymorphism
  • Ans. 

    Encapsulation, data abstraction, and polymorphism are three fundamental concepts in object-oriented programming.

    • Encapsulation is the process of hiding the implementation details of an object from the outside world.

    • Data abstraction is the process of representing only the essential features of an object and hiding the unnecessary details.

    • Polymorphism is the ability of an object to take on many forms or have multiple beha...

  • Answered by AI
  • Q3. What is stack and queue
  • Ans. 

    Stack is a data structure that follows Last In First Out (LIFO) principle. Queue is a data structure that follows First In First Out (FIFO) principle.

    • Stack is like a stack of plates where the last plate added is the first one to be removed

    • Queue is like a queue of people waiting in line where the first person added is the first one to be served

    • Stack operations: push (add element), pop (remove top element), peek (get top...

  • Answered by AI
  • Q4. What is caching
  • Ans. 

    Caching is the process of storing frequently used data in a temporary storage area for faster access.

    • Caching improves application performance by reducing the number of requests to the server.

    • It can be implemented at different levels such as browser, server, and database.

    • Examples of caching include browser caching of web pages, server caching of API responses, and database caching of query results.

  • Answered by AI
  • Q5. What is left, outer, inner join
  • Ans. 

    Join types used in SQL to combine data from multiple tables.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all rows from the left table and matching rows from the right table.

    • Outer join returns all rows from both tables, with null values for non-matching rows.

    • Examples: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

    • SELECT * FROM table1 LEFT JOIN table2 ON table1.id = table2...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare oops and data structure

Skills evaluated in this interview

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 applied via Naukri.com and was interviewed before Mar 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 - Aptitude Test 

General aptitude questions, analytical and logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Can you explain the Design diagram for your previous project
  • Q2. Explain any performance improvement you made in your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Confident responses go a long way, also accept that you don't know some concepts and are willing to learn.

GE Healthcare Interview FAQs

How many rounds are there in GE Healthcare Software Engineering Specialist interview?
GE Healthcare interview process usually has 2 rounds. The most common rounds in the GE Healthcare interview process are Technical.
What are the top questions asked in GE Healthcare Software Engineering Specialist interview?

Some of the top questions asked at the GE Healthcare Software Engineering Specialist interview -

  1. Java collection questi...read more
  2. Complete Core Java questi...read more
  3. Exception handl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Optum Interview Questions
4.0
 • 414 Interviews
Philips Interview Questions
3.9
 • 154 Interviews
Abbott Interview Questions
4.2
 • 142 Interviews
UnitedHealth Interview Questions
4.1
 • 82 Interviews
Paras Hospital Interview Questions
4.5
 • 76 Interviews
Pacific BPO Interview Questions
3.4
 • 72 Interviews
Pristyn Care Interview Questions
3.9
 • 70 Interviews
Medtronic Interview Questions
4.1
 • 69 Interviews
View all
GE Healthcare Software Engineering Specialist Salary
based on 62 salaries
₹7.5 L/yr - ₹15.2 L/yr
30% less than the average Software Engineering Specialist Salary in India
View more details

GE Healthcare Software Engineering Specialist Reviews and Ratings

based on 9 reviews

3.7/5

Rating in categories

3.8

Skill development

2.9

Work-life balance

3.2

Salary

3.7

Job security

3.2

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
480 salaries
unlock blur

₹8.8 L/yr - ₹26 L/yr

Senior Software Engineer
322 salaries
unlock blur

₹11.5 L/yr - ₹37.4 L/yr

Staff Software Engineer
142 salaries
unlock blur

₹22 L/yr - ₹48.2 L/yr

Software Developer
68 salaries
unlock blur

₹5.5 L/yr - ₹21 L/yr

Software Engineering Specialist
62 salaries
unlock blur

₹7.5 L/yr - ₹15.2 L/yr

Explore more salaries
Compare GE Healthcare with

Siemens Healthineers

4.0
Compare

Philips

3.9
Compare

Medtronic

4.1
Compare

Johnson & Johnson

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview