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. Election Winner Determination In an ongoing election between two ... read more
asked in Infosys
Q2. Count Ways to Reach the N-th Stair Problem Statement You are prov ... read more
asked in TCS iON
Q3. GCD (Greatest Common Divisor) Problem Statement You are given two ... read more
asked in Infosys
Q4. Maximum Subarray Sum Problem Statement Given an array arr of leng ... read more
asked in Infosys
Q5. Distinct Strings With Odd and Even Swapping Allowed Problem State ... 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
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
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 4 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 - Aptitude Test 

Basic apti questions were asked

Round 3 - Technical 

(2 Questions)

  • Q1. What is sorting
  • Ans. 

    Sorting is the process of arranging elements in a specific order, typically ascending or descending.

    • Sorting is used to organize data for easier retrieval and analysis.

    • Common sorting algorithms include bubble sort, insertion sort, and quicksort.

    • Sorting can be done on various data structures, such as arrays, lists, and trees.

    • Example: Sorting an array of strings alphabetically.

  • Answered by AI
  • Q2. 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, depending on the data model used.

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

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What is your expectation
  • Ans. 

    My expectation is to work in a challenging and dynamic environment where I can utilize my skills and knowledge to contribute to the success of the organization.

    • To work with a team of talented professionals

    • Opportunities for professional growth and development

    • A supportive and collaborative work culture

    • Clear communication and expectations from management

    • A fair and competitive compensation package

  • Answered by AI

Skills evaluated in this interview

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

based on 1 interview

Interview experience

3
  
Average
View more
Carelon Global Solutions System Engineer Salary
based on 43 salaries
₹4 L/yr - ₹12 L/yr
58% more than the average System Engineer Salary in India
View more details

Carelon Global Solutions System Engineer Reviews and Ratings

based on 7 reviews

4.7/5

Rating in categories

3.5

Skill development

4.6

Work-life balance

4.7

Salary

4.5

Job security

4.6

Company culture

4.3

Promotions

4.8

Work satisfaction

Explore 7 Reviews and Ratings
Software Engineer
3.3k salaries
unlock blur

₹3.9 L/yr - ₹16 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹9.4 L/yr - ₹28 L/yr

Claims Associate
2.4k salaries
unlock blur

₹1.5 L/yr - ₹4.8 L/yr

Associate Software Engineer
1.3k salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Associate
1k salaries
unlock blur

₹1.8 L/yr - ₹5.6 L/yr

Explore more salaries
Compare Carelon Global Solutions with

Infosys

3.6
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