Upload Button Icon Add office photos

R1 Group

Compare button icon Compare button icon Compare

Filter interviews by

R1 Group Interview Questions and Answers

Updated 6 Apr 2025
Popular Designations

R1 Group Interview Experiences

4 interviews found

DT Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Mar 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

I dont know much so sorry plz

Round 2 - Technical 

(3 Questions)

  • Q1. What is your name
  • Q2. Give me your self introductin
  • Q3. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Complete denials tfl duplicate inclusive
  • Q2. About complete company details

Analyst Interview Questions & Answers

user image Anonymous

posted on 29 Mar 2024

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

I applied via Referral and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me About yourself
Round 2 - Aptitude Test 

Voice and accent test for both voice and non voice

Round 3 - One-on-one 

(1 Question)

  • Q1. Manager asking question about project wise

Interview Questions & Answers

user image Anonymous

posted on 12 Jun 2021

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Where You Would Like To See Yourself In 5 Years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Calm During the Interview. Stress at Times Makes it Difficult.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about R1 Group?
Ask anonymously on communities.

Interview questions from similar companies

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

ABOUT CLOUD, DSA, DBMS, computer science fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. About projects, OOPS, DBMS, DSA
Round 3 - Technical 

(1 Question)

  • Q1. About projects, javascript
Round 4 - HR 

(1 Question)

  • Q1. General questions, about company
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Concepts of OOPS
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There is Hackerank Test Consist of 2 Coding questions and MCQ's.

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basic Concept
  • Q2. Personel Projects
Round 3 - Manegorial 

(2 Questions)

  • Q1. Quiz and One Algorithm based question
  • Q2. Academics based question
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Assignment 

Database questions and email addressing.

Interview Preparation Tips

Interview preparation tips for other job seekers - easy interview and prepare for communcation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Difference between abstract classes and interface
  • Q2. Find the common elements in 4 arrays

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The online test was scheduled on 10:00 AM. Total 304 students were eligible who appeared for the test. 93 students were shortlisted in this round. MCQs were asked and two coding question

MCQs were of medium to hard level.
OOPS(2 Question)
DBMS(2 questions)
Networking(2 Questions)
Operating System(2 Questions),
Aptitude(2 Questions)

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in a given array.

    • Iterate through the array and keep track of the maximum sum subarray seen so far.

    • Use Kadane's algorithm to efficiently find the maximum subarray sum.

    • Consider the case where all elements in the array are negative.

    • Handle the case where the array contains only one element.

  • Answered by AI
  • Q2. 

    Flipping Coins Problem

    Gary has N coins placed in a straight line. Some coins have their head side up, and others have the tail side up.

    Convention:

    1 denotes the HEAD side is up. 
    0 denotes the TAIL sid...
  • Ans. 

    Find the maximum number of head-side up coins by flipping a continuous segment of coins.

    • Iterate through the array and calculate the maximum number of head-side up coins without flipping.

    • Iterate through the array and calculate the maximum number of head-side up coins after flipping a continuous segment.

    • Compare the results from the above two steps to find the maximum number of head-side up coins obtainable.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was technical interview round, which was purely based on coding followed by 1 SQL query. Duration of round was of 1 hour from 10 AM-11AM. Interviewer asked me 2 Coding questions one to solve and run on Hackerrank codepair platform and for another one she asked only my approach to solve problem. In the remaining last 10 minutes interviewer asked me 1 SQL query on JOIN. Total 28 students were shortlisted in this round.

  • Q1. 

    First Missing Positive Problem Statement

    You are provided with an integer array ARR of length 'N'. Your objective is to determine the first missing positive integer using linear time and constant space. T...

  • Ans. 

    Find the smallest positive integer missing from an array of integers.

    • Iterate through the array and mark positive integers as visited by changing the sign of the corresponding index.

    • After marking, iterate again to find the first positive integer with a positive value, which will be the smallest missing positive integer.

    • Handle edge cases like all negative numbers, duplicates, and missing 1 separately.

  • Answered by AI
  • Q2. 

    Problem: kth Missing Element in a Sequence

    Given a strictly increasing sequence of integers VEC, identify the Kth missing contiguous integer element that is not present in the sequence, starting from the ...

  • Ans. 

    Find the kth missing element in a sequence of integers.

    • Iterate through the sequence to find missing elements.

    • Keep track of the count of missing elements found.

    • Return the kth missing element once count reaches k.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Banasthali University. Eligibility criteria7.0 and above CGPA , No current active backlogs/failures, only CS/IT StudentsAthenahealth interview preparation:Topics to prepare for the interview - Data Structures & Algorithms, Dynamic Programming, Hashing,Tree,Graph, Heap, OOPS, SQLTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice a lot of competitive programming.
Tip 2 : Revise complete Data Structures at least 3-4 times. 
Tip 3 : Do practice SQL queries.
Tip 4 : Do at least 1 Internship from a good company.
Tip 5 : Maintain CGPA up to 7.5

Application resume tips for other job seekers

Tip 1 : Keep it short, Do not repeat the same achievements in different sections.
Tip 2 : Do participate in extracurricular activities and Hackathons.

Final outcome of the interviewSelected

Skills evaluated in this interview

R1 Group Interview FAQs

How many rounds are there in R1 Group interview?
R1 Group interview process usually has 2-3 rounds. The most common rounds in the R1 Group interview process are Aptitude Test, Technical and HR.

Tell us how to improve this page.

Overall Interview Experience Rating

4.8/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 33%
4-6 weeks 33%
More than 8 weeks 33%
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 240 Interviews
Access Healthcare Interview Questions
3.9
 • 231 Interviews
Straive Interview Questions
3.4
 • 202 Interviews
AGS Health Interview Questions
4.0
 • 174 Interviews
Indegene Interview Questions
3.4
 • 158 Interviews
Nielsen Interview Questions
3.7
 • 133 Interviews
Kantar Interview Questions
3.5
 • 106 Interviews
Netscribes Interview Questions
2.7
 • 89 Interviews
View all

R1 Group Reviews and Ratings

based on 64 reviews

3.7/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.4

Salary

3.6

Job security

3.7

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 64 Reviews and Ratings
Senior Analyst
120 salaries
unlock blur

₹2.8 L/yr - ₹6.9 L/yr

Analyst
85 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Senior Associate
11 salaries
unlock blur

₹3.2 L/yr - ₹6.2 L/yr

Quality Analyst
10 salaries
unlock blur

₹4.1 L/yr - ₹12 L/yr

Assistant Manager
9 salaries
unlock blur

₹6 L/yr - ₹19.1 L/yr

Explore more salaries
Compare R1 Group with

Access Healthcare

3.9
Compare

AGS Health

4.0
Compare

Straive

3.4
Compare

CorroHealth infotech

3.2
Compare
write
Share an Interview