Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by HighRadius Team. If you also belong to the team, you can get access from here

HighRadius Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

HighRadius Business Analyst Interview Questions and Answers for Experienced

Updated 12 Feb 2023

HighRadius Business Analyst Interview Experiences for Experienced

1 interview found

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

Data Representation, Logical Reasoning

Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join HighRadius?
Round 4 - One-on-one 

(1 Question)

  • Q1. Tell me something about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best for your interview. Do not be nervous

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to resume and business case.

Interview Preparation Tips

Interview preparation tips for other job seekers - The entire interview plus hiring takes more than 3 months. In most occasions the Finance rejects the offer proposed by the HRs. HRs are highly unprofessional (Lead HR - Parvathi Urs). A huge risk of offer getting dissolved mid-way as well so take risk accordingly.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

SQL Based Test - Joins, Order of Execution

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Excel based Questions
  • Q2. Basic SQL questions
Round 3 - Case Study 

Case study on how you would place a shop outlet in an airport?

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. EXPLAINATION of DSP and SSP
  • Ans. 

    DSP stands for Demand-Side Platform and SSP stands for Supply-Side Platform in the context of programmatic advertising.

    • DSP is a platform used by advertisers to purchase ad inventory in real-time auctions.

    • SSP is a platform used by publishers to sell their ad inventory to advertisers.

    • DSPs and SSPs work together in programmatic advertising to automate the buying and selling of ad space.

    • DSPs use data and algorithms to targ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Case Study 

They asked a guesstimate case question. The question was, If you are the manager of McDonalds, where would you place it in the international chennai airport (Arrival or departure).
What will be the yearly revenue McDonalds if all items are priced at Rs.100.

Round 2 - Technical 

(2 Questions)

  • Q1. Advanced Excel Based questions
  • Q2. Basic SQL based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with you excel & SQL skills.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Case Study 

A list of behavior questions were shared to be filled.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through maximum number of online articles before interview.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It's like very easy properly prepare for aptitude round

Round 2 - One-on-one 

(1 Question)

  • Q1. Tell about yourself
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Good place to interview in the campus

Round 2 - Technical 

(1 Question)

  • Q1. What is binary search
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Binary search works by repeatedly dividing the search interval in half.

    • It is more efficient than linear search for large arrays.

    • Example: Searching for the number 7 in the array [1, 3, 5, 7, 9, 11] using binary search.

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Apr 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 

Logical thinking and coding mcq which was moderate in difficulty

Round 3 - Coding Test 

Hard with data structure concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Gain more knowledge on data structure mostly practical knowledge would be helpful to you

Interview Questionnaire 

2 Questions

  • Q1. Little discussion on my project
  • Q2. Given a chessboard and the initial position of horse. If “n” is the number of steps the horse can make then what is probability that it goes out of board ?
  • Ans. 

    Probability of a horse going out of a chessboard in 'n' steps.

    • The total number of possible moves for a horse is 8.

    • The probability of going out of the board depends on the position of the horse.

    • For example, if the horse is at a corner, the probability of going out of the board is higher.

    • The probability can be calculated using combinatorics and geometry.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: They did not expect any code in this round. An algo or pseudo code is fine.



1) You are given 2 vessels with capacity M liters and N liters capacity and infinite supply of water. You need to find the minimum number of steps required to get P liters. Any of the below action is considered a step



     a) Filling vessel with water



     b) Emptying vessel



     c) Pouring water from one vessel to another vessel.



2) Given n sets each containing m integers. You need to create MinDiff set by picking exactly 1 element from each set. The difference between the maximum and minimum elements in the MinDiff set should be minimum.



eg: for the sets {30, 20, 10, 40},{ 22, 33, 44, 99},{ 16, 17, 18, 19} min diff set is {19, 20, 22}. Max and min elements in MinDiff set are 22 and 19 and their difference is 3.

Round: Technical Interview
Experience: 1) you will be given the binary representation of the numbers in the form of 2D array.eg: r1- 00001

r2- 00100

r3- 01010

r4- 00110

r5- 00111 This means the elements are 1, 4, 10 , 6 and 7.

A number “n” is given. Let us say that n can be formed by doing bitwise OR operation on rows of given matrix. What is the minimum number of rows that needs to be deleted from the matrix so that “n” can never be formed by doing the OR of the rows.

If n is 14(01110) then it can be formed by doing r2|r3 or r3|r4. You can prevent n formation either by deleting {r2,r4} or {r3}. But {r3} has least number of elements so it is the required set.2) Find the average of mid 50% of elements in the running stream of integersI have not cleared round-II so no further questions.

College Name: IIT GANDHINAGAR

HighRadius Interview FAQs

How many rounds are there in HighRadius Business Analyst interview for experienced candidates?
HighRadius interview process for experienced candidates usually has 4 rounds. The most common rounds in the HighRadius interview process for experienced candidates are Resume Shortlist, Aptitude Test and HR.
How to prepare for HighRadius Business Analyst interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at HighRadius. The most common topics and skills that interviewers at HighRadius expect are Business Analysis, Data Analysis, Email Marketing, Project Management and Advanced Excel.

Tell us how to improve this page.

HighRadius Business Analyst Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more
HighRadius Business Analyst Salary
based on 68 salaries
₹7 L/yr - ₹14.1 L/yr
At par with the average Business Analyst Salary in India
View more details

HighRadius Business Analyst Reviews and Ratings

based on 19 reviews

2.7/5

Rating in categories

2.3

Skill development

2.3

Work-life balance

2.7

Salary

2.2

Job security

2.7

Company culture

2.4

Promotions

2.5

Work satisfaction

Explore 19 Reviews and Ratings
Associate Software Engineer
408 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
340 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Techno Functional Consultant
199 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
197 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer 2
196 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare HighRadius with

Chargebee

3.9
Compare

Freshworks

3.5
Compare

Zoho

4.3
Compare

CleverTap

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