Upload Button Icon Add office photos

Filter interviews by

Carelon Global Solutions Graduate Trainee Interview Questions and Answers

Updated 23 Jul 2024

Carelon Global Solutions Graduate Trainee Interview Experiences

1 interview found

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 Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning and quantitative aptitude

Round 2 - Coding Test 

Easy 1 coding question

Round 3 - Technical 

(3 Questions)

  • Q1. Difference between where and having in sql
  • Ans. 

    WHERE is used to filter rows before grouping or aggregating, while HAVING is used to filter groups after grouping or aggregating.

    • WHERE is used with SELECT, UPDATE, DELETE statements to filter rows based on a condition

    • HAVING is used with GROUP BY clause to filter groups based on a condition

    • WHERE is applied before grouping or aggregating data, HAVING is applied after grouping or aggregating data

    • Example: SELECT * FROM tab...

  • Answered by AI
  • Q2. What do you know about unique keyword in sql
  • Ans. 

    UNIQUE keyword in SQL is used to ensure that all values in a column are unique.

    • Used in CREATE TABLE statement to define a column as unique

    • Prevents duplicate values in the specified column

    • Can be used with multiple columns to create composite unique keys

  • Answered by AI
  • Q3. Last one 1 coding question

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Incudes all basics from NetCom, OS , English and medium level C / C++ program

Round 2 - Technical 

(2 Questions)

  • Q1. Asked which is my favorite programming language : proffered is C / CPP
  • Q2. Find the output , How polymorphism works , etc.
  • Ans. 

    Polymorphism in object-oriented programming allows objects of different classes to be treated as objects of a common superclass.

    • Polymorphism allows for flexibility and reusability in code.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overriding in inheritance and interfaces in Java.

    • Polymorphism can be achieved through method overloading and method overriding.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Basic HR questions
  • Q2. Explain ur hobby
  • Ans. 

    My hobby is photography, capturing moments and telling stories through images.

    • I enjoy exploring different locations to find unique shots

    • I love experimenting with different lighting techniques

    • I often edit my photos to enhance their visual impact

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Takes around few months to onboard . In my case around 6 Months
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Avg level question on aptitude

Round 2 - Coding Test 

2 easy or medium level question

Round 3 - Technical 

(1 Question)

  • Q1. Ragarding oops they asked lot of question like new keyword, template, inheritence , acces modifier, and lot
Round 4 - HR 

(1 Question)

  • Q1. They ask situation base dquestion

Interview Preparation Tips

Interview preparation tips for other job seekers - After cracking in u have to pass their genesis program to .they will train u properly and take test if u pass the test u will converted into fte other wise they will fire u
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy-moderate question with coding and aptitude

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions about microprocessor and the projects done
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 Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

10 Genral Apti , 10 code apti duration 1 hr

Round 2 - Coding Test 

3 hrs, 2 Stages 1st stage 3 Question, 2nd stage have 3 Question

I applied via Naukri.com and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic C questions and 2 c programs to find wrong in code.
  • Q2. Prepare all UART, SPI, CAN, I2C timing digrams their frame format.
  • Ans. 

    Explanation of UART, SPI, CAN, I2C timing diagrams and frame formats.

    • UART: asynchronous serial communication, start and stop bits, baud rate

    • SPI: synchronous serial communication, master-slave architecture, clock polarity and phase

    • CAN: differential serial communication, arbitration, error detection and correction

    • I2C: synchronous serial communication, master-slave architecture, addressing, clock stretching

  • Answered by AI
  • Q3. Matlab knowledge is advantage

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and cofident

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1. About previous projects, C programming basics, Autosar related basic questions. Indetailed understanding about the previous projects required whichever area worked un.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is not so hard.

I appeared for an interview before Jun 2020.

Interview Questionnaire 

1 Question

  • Q1. Embedded, automotive, powertrain,basic electronics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare c programming and basic electronics

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Longest Increasing Subsequence Problem Statement

    Given 'N' students standing in a row with specific heights, your task is to find the length of the longest strictly increasing subsequence of their heights...

  • Ans. 

    Find the length of the longest strictly increasing subsequence of heights of students in a row.

    • Iterate through the heights array and for each element, find the length of the longest increasing subsequence ending at that element.

    • Use dynamic programming to keep track of the longest increasing subsequence length for each element.

    • Return the maximum length found as the result.

  • Answered by AI
  • Q2. 

    Overlapping Intervals Problem Statement

    You are given the start and end times of 'N' intervals. Write a function to determine if any two intervals overlap.

    Note:

    If an interval ends at time T and anothe...

  • Ans. 

    Given start and end times of intervals, determine if any two intervals overlap.

    • Iterate through intervals and check if any two intervals overlap by comparing their start and end times

    • Sort intervals based on start times for efficient comparison

    • Consider edge cases where intervals end and start at the same time

  • Answered by AI
  • Q3. What SQL queries were asked during your interview?
  • Ans. 

    Various SQL queries related to data manipulation and retrieval were asked during the interview.

    • Basic SELECT queries to retrieve data from a single table

    • JOIN queries to retrieve data from multiple tables based on a common column

    • Aggregate functions like COUNT, SUM, AVG, etc. to perform calculations on data

    • Subqueries to retrieve data based on the result of another query

    • UPDATE queries to modify existing data in a table

    • DELE...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Zig-Zag String Problem Statement

    Given a string STR of size N and an integer M representing the number of rows in the zig-zag pattern, return the string formed by concatenating all rows when the string ST...

  • Ans. 

    Arrange a string in zig-zag pattern with given number of rows and concatenate the rows.

    • Iterate through the string and distribute characters to rows based on zig-zag pattern

    • Concatenate the characters in each row to get the final result

    • Handle edge cases like when number of rows is 1 or equal to the length of the string

  • Answered by AI
  • Q2. 

    Next Permutation Problem Statement

    You are given a permutation of 'N' integers. A sequence of 'N' integers is considered a permutation if it includes all integers from 1 to 'N' exactly once. Your task is ...

  • Ans. 

    The task is to rearrange a given permutation of 'N' integers to form the lexicographically next greater permutation.

    • Iterate from right to left to find the first element that is smaller than the element to its right.

    • Swap this element with the smallest element to its right that is greater than it.

    • Reverse the elements to the right of the swapped element to get the lexicographically next greater permutation.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Remove Consecutive Duplicates Problem Statement

    Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.

    Input:

    String S

    Output:

    Output string

    Constr...

  • Ans. 

    Recursively remove consecutive duplicate characters from a string.

    • Use recursion to check if the current character is the same as the next character, if so skip the next character

    • Base case: if the string is empty or has only one character, return the string

    • Example: Input: 'aaabcc', Output: 'abc'

  • Answered by AI
  • Q2. 

    Print Permutations - String Problem Statement

    Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string.

    Input:

    The first and only line of input ...
  • Ans. 

    Return all possible permutations of a given input string.

    • Use recursion to generate all possible permutations of the input string.

    • Swap characters at different positions to generate permutations.

    • Handle duplicate characters in the input string by using a set to store unique permutations.

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Design an e-commerce website similar to Flipkart or Amazon.
  • Ans. 

    Design an e-commerce website similar to Flipkart or Amazon.

    • Implement user-friendly interface for easy navigation

    • Include search functionality with filters for products

    • Incorporate secure payment gateway for transactions

    • Provide personalized recommendations based on user behavior

    • Include customer reviews and ratings for products

    • Implement order tracking and delivery status updates

    • Offer various payment options like credit/deb

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Kurukshetra. I applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7.5 CGPASAP Labs interview preparation:Topics to prepare for the interview - DSA(Data Structures and Algorithms),Object-Oriented Programming Principles,Operating Systems,Database Management Systems,Web Development,Machine Learning,Projects(Internship/Full-time)Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DSA well. Standard Leetcode-type questions will be asked.
Tip 2 : You should be crystal clear about your project/s as any question would be asked and you should be able to answer it.
Tip 3 : Prepare CS fundaments like OS, OOPs, DBMS, etc.

Application resume tips for other job seekers

Tip 1 : Clearly mention the tech. stack you have worked on in the project/s
Tip 2 : As a fresher, you should add your coding profiles on CodeChef, Codeforces, etc. so as to make the resume shortlisting easy

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Explain urself
  • Ans. 

    I am a detail-oriented business analyst with strong analytical skills and experience in data analysis and project management.

    • Experienced in conducting market research and identifying business opportunities

    • Skilled in data analysis and visualization using tools like Excel and Tableau

    • Proficient in project management methodologies like Agile and Waterfall

    • Strong communication and interpersonal skills for effective collabora...

  • Answered by AI
  • Q2. I explained

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very simple. Nothing has been asked. Salary mentioned on jd was higher but offered the least one

Carelon Global Solutions Interview FAQs

How many rounds are there in Carelon Global Solutions Graduate Trainee interview?
Carelon Global Solutions interview process usually has 3 rounds. The most common rounds in the Carelon Global Solutions interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Carelon Global Solutions Graduate Trainee interview?

Some of the top questions asked at the Carelon Global Solutions Graduate Trainee interview -

  1. What do you know about unique keyword in ...read more
  2. Difference between where and having in ...read more
  3. Last one 1 coding quest...read more

Tell us how to improve this page.

Carelon Global Solutions Graduate Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 869 Interviews
Google Interview Questions
4.4
 • 851 Interviews
Amdocs Interview Questions
3.7
 • 519 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
KPIT Technologies Interview Questions
3.4
 • 291 Interviews
SAP Interview Questions
4.2
 • 285 Interviews
Adobe Interview Questions
3.9
 • 237 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
View all
Software Engineer
3.3k salaries
unlock blur

₹5 L/yr - ₹16.3 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹9.5 L/yr - ₹28 L/yr

Claims Associate
2.4k salaries
unlock blur

₹1.7 L/yr - ₹4.8 L/yr

Associate Software Engineer
1.4k salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Associate
1k salaries
unlock blur

₹1.9 L/yr - ₹6 L/yr

Explore more salaries
Compare Carelon Global Solutions with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

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