Upload Button Icon Add office photos

Filter interviews by

Carelon Global Solutions System Engineer Interview Questions and Answers

Updated 25 Jul 2024

Carelon Global Solutions System Engineer Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test, on basic skills was covered

Round 2 - One-on-one 

(2 Questions)

  • Q1. Java basics and Oops concepts
  • Q2. Prior experience and questions about that

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What do you do when teams not connecting
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic customer handling scenario
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer what you know, don't worry if you can't answer all

System Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. Who Won the Election???Elections are going on, and there are two ... read more
asked in TCS iON
Q2. gcdYou are given two numbers, ‘X’ and ‘Y’. Your task is to find t ... read more
asked in Infosys
Q3. Count Ways To Reach The N-th StairsYou have been given a number o ... read more
asked in Infosys
Q4. Distinct Strings With Odd and Even Swapping AllowedYou are given ... read more
asked in Infosys
Q5. Maximum Subarray SumYou are given an array (ARR) of length N, con ... read more

Interview questions from similar companies

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

Simple aptitude questions focing on english

Round 2 - Technical 

(5 Questions)

  • Q1. All java basic and advanced questions
  • Q2. Remove duplicatefrom string
  • Ans. 

    Use a set to remove duplicates from a string

    • Create a set to store unique characters

    • Iterate through the string and add each character to the set

    • Convert the set back to a string to get the result

  • Answered by AI
  • Q3. Write star pattern
  • Ans. 

    Print a star pattern using loops

    • Use nested loops to print the desired pattern

    • Start with a small pattern and then increase complexity

    • Use '*' character to represent the stars

    • Example: For a simple pattern, you can use a loop to print '*' in a single line

  • Answered by AI
  • Q4. Find length of string they give string
  • Ans. 

    Use the length() function to find the length of the given string.

    • Use the length() function in programming languages like Java, Python, C++, etc.

    • For example, in Java: String str = 'hello'; int length = str.length();

    • Make sure to handle edge cases like empty strings or null values.

  • Answered by AI
  • Q5. Replace characters from string
  • Ans. 

    Replace characters from string with another character

    • Use a loop to iterate through each character in the string

    • Check if the character needs to be replaced and replace it with the desired character

    • Return the modified string

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Linux booting process
  • Q2. DHCP process
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 questions on coding

Round 2 - Technical 

(1 Question)

  • Q1. Coding test on few ques
Round 3 - HR 

(2 Questions)

  • Q1. How was the experience
  • Q2. Expected CTC that is
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com

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 

Basic aptitude questions were asked in this round

Round 3 - Technical 

(2 Questions)

  • Q1. What is database
  • Ans. 

    A database is a structured collection of data that is organized and managed to provide efficient retrieval and storage.

    • A database is a software system that stores and manages data.

    • It provides a way to organize and structure data for easy retrieval and manipulation.

    • Databases can be relational, object-oriented, or hierarchical.

    • Examples of databases include MySQL, Oracle, and MongoDB.

  • Answered by AI
  • Q2. What is quick sort
  • Ans. 

    Quick sort is a sorting algorithm that uses a divide-and-conquer approach to sort an array of elements.

    • It selects a pivot element and partitions the array into two sub-arrays, one with elements smaller than the pivot and the other with elements greater than the pivot.

    • The process is repeated recursively on the sub-arrays until the entire array is sorted.

    • It has an average time complexity of O(n log n) and is widely used

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What is your current location
  • Ans. 

    I am currently located in New York City.

    • New York City

    • USA

    • East Coast

    • Manhattan

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 - Technical 

(2 Questions)

  • Q1. Describe product development process
  • Ans. 

    Product development process involves designing, creating, and testing a product before it is launched in the market.

    • Market research to identify customer needs and preferences

    • Concept development and brainstorming ideas

    • Designing and prototyping the product

    • Testing and refining the product based on feedback

    • Manufacturing and production

    • Launching and marketing the product

    • Continuous improvement and updates based on customer fe

  • Answered by AI
  • Q2. What is meant by SPES
  • Ans. 

    SPES stands for System Performance Evaluation System, a tool used to analyze and optimize the performance of computer systems.

    • SPES is a software tool used by system engineers to evaluate the performance of computer systems.

    • It helps in identifying bottlenecks and optimizing system performance.

    • SPES can be used to analyze CPU usage, memory usage, disk I/O, and network performance.

    • By using SPES, system engineers can make i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about company and ask good question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Describe about your project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Prime number using any popular language
  • Ans. 

    A prime number is a number greater than 1 that can only be divided by 1 and itself.

    • Use a loop to check if the number is divisible by any number other than 1 and itself

    • Start checking from 2 up to the square root of the number for efficiency

    • If the number is only divisible by 1 and itself, it is a prime number

  • Answered by AI
  • Q2. Reverse string using any popular language
  • Ans. 

    Reverse a string using popular programming languages

    • Use built-in functions like reverse() in Python

    • Iterate through the string in reverse order in C++

    • Use StringBuilder.reverse() in Java

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basics of SQL and Scripts
  • Q2. Health care related questions

Carelon Global Solutions Interview FAQs

How many rounds are there in Carelon Global Solutions System Engineer interview?
Carelon Global Solutions interview process usually has 2-3 rounds. The most common rounds in the Carelon Global Solutions interview process are One-on-one Round, Technical and HR.
What are the top questions asked in Carelon Global Solutions System Engineer interview?

Some of the top questions asked at the Carelon Global Solutions System Engineer interview -

  1. Basic customer handling scena...read more
  2. Java basics and Oops conce...read more

Tell us how to improve this page.

Carelon Global Solutions System Engineer Salary
based on 44 salaries
₹4 L/yr - ₹13.5 L/yr
64% more than the average System Engineer Salary in India
View more details

Carelon Global Solutions System Engineer Reviews and Ratings

based on 8 reviews

4.4/5

Rating in categories

3.1

Skill development

4.1

Work-life balance

4.2

Salary

4.0

Job security

4.2

Company culture

3.9

Promotions

4.5

Work satisfaction

Explore 8 Reviews and Ratings
Senior Software Engineer
3.3k salaries
unlock blur

₹9.3 L/yr - ₹28 L/yr

Software Engineer
3.2k salaries
unlock blur

₹5 L/yr - ₹18.1 L/yr

Claims Associate
2.3k salaries
unlock blur

₹1.5 L/yr - ₹4.8 L/yr

Associate Software Engineer
1.2k salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Associate
1k salaries
unlock blur

₹2 L/yr - ₹5.6 L/yr

Explore more salaries
Compare Carelon Global Solutions with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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