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

Clear (1)

HighRadius Process Developer Interview Questions and Answers

Updated 7 Dec 2024

HighRadius Process Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Personal questions they asked?
  • Q2. Package details asking in previous process

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company ever in Hyderabad , they pressure you to put resign within probation period. Recently one person committed suicide but no one knows about it. They managed everything. So better Don't join HighRadius company.
I was very happy when receiving offer from HighRadius, later 4 months scene completely reverse and toxic environment and pressure building on each employees. Uncertainty in work culture un realistic time dead lines extra hours work.
Specially one person I mention " his name Ashish Tiwari" Racist and psycho manager, toxic culture ka baap ,Assigns work on logout time and during weekends too.
Completely corrupted and dirty politics , micro managements , stupid HR policies, leave policy to bad too worst.
My homble request for every one please understand don't join in HighRadius technologies. Every 6 months they imported interns and terminates experience persons. Only worst management, dirty politics, and crucial mentality nature you have then only sustain there.

Interview questions from similar companies

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 Resume 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 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

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

I applied via Walk-in and was interviewed before Oct 2022. There were 4 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 Resume tips
Round 2 - Coding Test 

Easy round a hackerrank test with easy to medium problems

Round 3 - Technical 

(1 Question)

  • Q1. Question based on binary search
Round 4 - HR 

(1 Question)

  • Q1. Nothing much just the offer discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Database Design
  • Q2. SQL and Datawarehousing
Round 2 - HR 

(2 Questions)

  • Q1. Intrest & Hobbies
  • Q2. Education & Negociation
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Movie Review App that uses a public API to fetch the movie details and present it in the UI.

Round 2 - Coding Test 

Reversing the Linked list

Round 3 - Technical 

(1 Question)

  • Q1. Project explanation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Coding Test 

Live coding with interviewer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed with dsa and system design. Having aws knowledge is added advantage.

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

three coding questions , no mcq, 1 hr limit

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
  • Q2. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. 

    The task is to identify all distinct triplets within an array that sum up to a specified number.

    • Iterate through the array and use nested loops to find all possible triplets.

    • Check if the sum of the triplet equals the specified number.

    • Print the valid triplets or return -1 if no triplet exists.

  • Answered by AI
  • Q3. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find their lengths and the difference in lengths

    • Move the pointer of the longer list by the difference in lengths

    • Traverse both lists simultaneously until they meet at the merging node

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

1st they asked area of interest like frontend or backend. I said backend 
Then thy asked a array based question followed by a linked list. 
Then he asked some computer fundametals.

  • Q1. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Identify elements with count greater than 1 as duplicates.

    • Return the duplicate elements as the output.

    • Handle edge cases like empty array or no duplicates found.

  • Answered by AI
  • Q2. 

    Remove Nodes with Specific Value from Linked List

    You are provided with a singly linked list consisting of integer values and an integer 'K'. Your task is to eliminate all nodes from the linked list that ...

  • Ans. 

    Remove nodes with specific value from a singly linked list.

    • Traverse the linked list and remove nodes with value equal to 'K'.

    • Update the references of the previous node to skip the removed node.

    • Handle edge cases like removing the head node or multiple nodes with the same value.

    • Return the modified linked list after removal.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

mainly focused on dsa , dbms and working of an API

  • Q1. 

    Sort Linked List Based on Actual Values

    Given a Singly Linked List of integers that are sorted based on their absolute values, the task is to sort the linked list based on the actual values.

    The absolute...

  • Ans. 

    Sort a Singly Linked List based on actual values instead of absolute values.

    • Traverse the linked list and store the values in an array.

    • Sort the array based on actual values.

    • Update the linked list with the sorted values.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in ChennaiEligibility criteriaOnly criteria was to solve all the 3 questions of coding test on hackerRank link was sent to all eligible students.Freshworks interview preparation:Topics to prepare for the interview - DSA, computer fundamentals, operating systems, DBMS, Programming basics, Trees, Graphs, DPTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Having a prior internship with a dev role will definitely help in interviews.
Tip 2 : If you are not good in frontend then prepare DSA and computer fundamentals very well
Tip 3 : Apart from Leetcode medium questions Have hands on DMBS queries
Tip 4 : Having an API based project will be very helpful for backend roles

Application resume tips for other job seekers

Tip 1 : They will mostly ask in first round if you interested in frontend or backend roles and then the follow up interviews will happen in that direction.
Tip 2 : so make your resume specific to the role you are interested in. 
Tip 3 : Write what you have worked on in your prior internship. 
Tip 4 : if this is your first internship write your strong points and only things which you are confident in because after selection interviewer will driil you on those topics.

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

HighRadius Interview FAQs

How many rounds are there in HighRadius Process Developer interview?
HighRadius interview process usually has 1 rounds. The most common rounds in the HighRadius interview process are Technical.
What are the top questions asked in HighRadius Process Developer interview?

Some of the top questions asked at the HighRadius Process Developer interview -

  1. Package details asking in previous proc...read more
  2. Personal questions they ask...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

SALARIES

HighRadius

INTERVIEWS

Cloud Analogy

No Interviews

SALARIES

HighRadius

INTERVIEWS

Bechtel

No Interviews

INTERVIEWS

Cloud Analogy

30 top interview questions

DESIGNATION

INTERVIEWS

HighRadius

No Interviews

LIST OF COMPANIES

Cloud Analogy

Locations

Tell us how to improve this page.

HighRadius Process Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 505 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Angel One Interview Questions
3.9
 • 135 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
Revolut Interview Questions
2.6
 • 95 Interviews
Rupeek Interview Questions
3.7
 • 60 Interviews
View all
HighRadius Process Developer Salary
based on 5 salaries
₹5 L/yr - ₹6.2 L/yr
20% more than the average Process Developer Salary in India
View more details

HighRadius Process Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
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