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
2.9

based on 1.3k Reviews

Filter interviews by

HighRadius Senior Software Engineer Interview Questions and Answers

Updated 24 Jun 2024

HighRadius Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Aks about the few questions of dsa
  • Q2. Ask about the design system
Round 2 - Technical 

(1 Question)

  • Q1. Ask about the design system
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find the 2nd most repetitive character in a string using streams.
  • Ans. 

    Find the 2nd most repetitive character in a string using streams.

    • Convert the string to a character array

    • Use Java streams to group the characters by count

    • Sort the map by values to find the 2nd most repetitive character

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more

Senior Software Engineer Jobs at HighRadius

View all

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Referral and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Data structures and algo. 2 ques were asked in hackerrank

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to System design
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic question related to Spring and Java
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain the last technically challenging topic that you have worked on. The engineering manager is only interested in self boasting. Without even trying to understand the entire problem statement, they try...

Interview Preparation Tips

Interview preparation tips for other job seekers - To pass engineering manager round, you will always have to agree to the hiring manager. Even if technically it doesn't make sense, just nod. The entire interview is to boost his ego. The comments that they pass without even understanding the entire picture is generally astonishing.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Micro services architecture
Round 2 - Technical 

(1 Question)

  • Q1. Java ,springboot
Round 3 - Technical 

(1 Question)

  • Q1. Springboot and java questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Machine coding: Design in-memory document search
Round 2 - Technical 

(1 Question)

  • Q1. HLD: Design a ad-click aggregation service
  • Ans. 

    Design an ad-click aggregation service for tracking and analyzing ad clicks.

    • Use a distributed system to handle high volume of ad click data

    • Implement real-time processing for immediate insights on ad performance

    • Utilize a database to store aggregated ad click data for reporting and analysis

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

Search in Rotated sorted array

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

I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Codility Test with leetcode medium questions

Round 2 - Technical 

(4 Questions)

  • Q1. Built a react feature
  • Ans. 

    Built a react feature

    • Identify the specific feature to be built

    • Design the component hierarchy and state management

    • Implement the feature using React components and hooks

    • Test the feature for functionality and user experience

    • Refactor and optimize the code for performance

  • Answered by AI
  • Q2. Questions based around react
  • Q3. How to implement timer
  • Ans. 

    A timer can be implemented using a combination of system time and a loop that checks for elapsed time.

    • Get the current system time at the start of the timer

    • Enter a loop that continuously checks the difference between the current system time and the start time

    • When the desired time has elapsed, perform the desired action or trigger an event

  • Answered by AI
  • Q4. How to implement useEffect
  • Ans. 

    useEffect is a hook in React that allows you to perform side effects in functional components.

    • useEffect is used to handle side effects in React components.

    • It takes two arguments: a function and an optional array of dependencies.

    • The function inside useEffect is executed after the component renders.

    • The optional array of dependencies determines when the effect should run.

    • If the array of dependencies is empty, the effect r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Visa Senior Software Engineer interview:
  • React
Interview preparation tips for other job seekers - Good experience overall, rejected

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is java multithreading
  • Ans. 

    Java multithreading is a feature that allows concurrent execution of multiple threads within a single process.

    • Multithreading in Java allows multiple threads to run concurrently within a single process.

    • Each thread has its own stack and executes independently, but shares the same memory space.

    • Java provides built-in support for multithreading through the java.lang.Thread class and java.lang.Runnable interface.

    • Multithreadi...

  • Answered by AI
  • Q2. Explain exception hierarchy
  • Ans. 

    Exception hierarchy is a way to organize and categorize different types of exceptions in a software system.

    • Exceptions are organized in a tree-like structure with a base class at the top and more specific exception classes below.

    • Base class usually is 'Exception' or 'Throwable', with more specific classes like 'IOException', 'NullPointerException', etc.

    • Subclasses can provide more specific information about the cause of t...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(1 Question)

  • Q1. Low Level Design: How to do rate limiting for a platform serving 100K requests per second.
  • Ans. 

    Implement rate limiting for a platform serving 100K requests per second.

    • Use a token bucket algorithm to limit the rate of incoming requests.

    • Set a maximum number of tokens in the bucket to control the rate.

    • Refill the bucket at a constant rate to allow bursts of requests.

    • Track the timestamp of the last request to enforce the rate limit.

    • Consider using a distributed rate limiting system for scalability.

    • Monitor and adjust t...

  • Answered by AI

Skills evaluated in this interview

HighRadius Interview FAQs

How many rounds are there in HighRadius Senior Software Engineer interview?
HighRadius interview process usually has 1-2 rounds. The most common rounds in the HighRadius interview process are Technical.
How to prepare for HighRadius Senior Software Engineer interview?
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 Java, Hibernate, Spring, Software Engineering and Struts.
What are the top questions asked in HighRadius Senior Software Engineer interview?

Some of the top questions asked at the HighRadius Senior Software Engineer interview -

  1. Find the 2nd most repetitive character in a string using strea...read more
  2. Aks about the few questions of ...read more
  3. Ask about the design sys...read more

Tell us how to improve this page.

HighRadius Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
HighRadius Senior Software Engineer Salary
based on 123 salaries
₹10 L/yr - ₹31 L/yr
40% more than the average Senior Software Engineer Salary in India
View more details

HighRadius Senior Software Engineer Reviews and Ratings

based on 12 reviews

1.9/5

Rating in categories

2.4

Skill development

2.1

Work-life balance

2.9

Salary

1.4

Job security

1.5

Company culture

1.8

Promotions

2.0

Work satisfaction

Explore 12 Reviews and Ratings
Senior Software Engineer

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Senior Software Engineer - Java

Hyderabad / Secunderabad

4-8 Yrs

Not Disclosed

Explore more jobs
Associate Software Engineer
408 salaries
unlock blur

₹5.5 L/yr - ₹10.5 L/yr

Associate Consultant
338 salaries
unlock blur

₹6.9 L/yr - ₹13.3 L/yr

Associate Software Engineer 2
189 salaries
unlock blur

₹6.3 L/yr - ₹12.2 L/yr

Consultant
185 salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Techno Functional Consultant
166 salaries
unlock blur

₹6 L/yr - ₹12.2 L/yr

Explore more salaries
Compare HighRadius with

Chargebee

4.0
Compare

Freshworks

3.5
Compare

Zoho

4.3
Compare

CleverTap

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