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 Software Developer Intern Interview Questions and Answers

Updated 12 Jan 2025

HighRadius Software Developer Intern Interview Experiences

3 interviews found

Software Developer Intern Interview Questions & Answers

user image Abhiraj Chatterjee

posted on 12 Jan 2025

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

Creating a Web App using React JS and Java Servlets

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

There was a very basic aptitude test ,but time was very low.

Round 2 - Coding Test 

For round 2 there were given 2 questions which were very easy, any beginner programmer can do it.

Round 3 - One-on-one 

(4 Questions)

  • Q1. During the interview I was asked about my hobbies my projects and a bit about dsa
  • Q2. About Hobbies like photography and studds
  • Q3. ABout basic dsa like stack queue
  • Q4. About my projects

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in CommVault
Q2. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
asked in Amazon
Q3. Fish Eater Problem Statement In a river where water flows from le ... read more
Q4. Find K Closest Elements Given a sorted array 'A' of length 'N', a ... read more
asked in Groww
Q5. Minimum and Maximum Candy Cost Problem Ram is in Ninjaland, visit ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Institute of Technical Education and Research, Bhuvaneshwar and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Assignment 

They first taught React ,javaEE and sql and than told us to make a full stack B2b invoice management system

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list

    • Create a new linked list to store the merged result

    • Iterate through both input linked lists and compare nodes to determine the order in which they should be added to the result list

    • Handle cases where one list is longer than the other

  • Answered by AI
  • Q2. Check if paranthesis are balanced or not
  • Ans. 

    To check if parentheses are balanced, use a stack data structure to keep track of opening and closing parentheses.

    • Use a stack to push opening parentheses and pop when encountering a closing parenthesis

    • If stack is empty when encountering a closing parenthesis, return false

    • After iterating through all parentheses, if stack is empty, return true

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Right view of a Binary Search tree
  • Ans. 

    The right view of a Binary Search Tree shows the nodes that are visible when viewing the tree from the right side.

    • The right view of a Binary Search Tree includes the rightmost node at each level.

    • Nodes at each level that are not visible from the right side are not included in the right view.

    • Example: For the Binary Search Tree with values 1, 2, 3, 4, 5, the right view would be 1, 3, 5.

  • Answered by AI
  • Q2. Few javascript questions on how to parse a json object without using inbuilt libraries.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa easy-medium and your projecs in depth.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

There were DSA questions and time limit was 1 hr

Round 2 - Technical 

(2 Questions)

  • Q1. Calculate factorial using tabulation
  • Ans. 

    Factorial calculation using tabulation in dynamic programming

    • Create an array to store factorial values up to n

    • Initialize the array with base cases (0! = 1, 1! = 1)

    • Iterate from 2 to n and calculate factorial using previous values in the array

    • Return the factorial value at index n

  • Answered by AI
  • Q2. Wildcard matching question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

5 MCQ questions, and 1 coding question similar to Leetcode medium-hard level (topic-greedy).

Round 2 - Technical 

(2 Questions)

  • Q1. Basic DSA questions related to strings, linkedlists, binary search etc.
  • Q2. Questions related to resume

Interview Preparation Tips

Topics to prepare for PayPal Software Developer Intern interview:
  • DSA
  • DBMS
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

1 hr , 3 sum leetcode question

I applied via Walk-in and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

DSA Problems on LinkedList and Stack.

Round 2 - One-on-one 

(1 Question)

  • Q1. HM Round on projects and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the problems keenly and ask necessary questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Mandi and was interviewed in Jul 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. There were basic DSA questions
  • Q2. Few questions based on Resume and Projects

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Easy

Simple question based on strings was given. MCQs based on basic aptitude and programming questions were asked. 
Tips: Time management is important. Remember all the syntaxes

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    This can be done by iterative swapping using two pointers. The first pointer points to the beginning of the string, whereas the second pointer points to the end. Both pointers keep swapping their elements and go towards each other. Essentially, the algorithm simulates the rotation of a string with respect to its midpoint.
    Time Complexity : O(n)

  • Answered Anonymously
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It was a good experience.
Tips: If you don't know something just tell them. Don't try to answer something if you don't know anything about it

  • Q1. 

    One Away Transformation Problem

    Given two strings, A and B, determine whether A can be transformed into B by performing at most one of the following operations (including zero operations):

    1. Delete a ch...
  • Ans. 

    The idea is to create a new character array and copy the characters from the original String before the given position
    After that, we put the new character at the position and copy the rest of the characters from the original String in the subsequent positions of the new array.
    Other option can be to directly use the already defined methods such as insert().

  • Answered Anonymously
  • Q2. 

    Remove Duplicates from String Problem Statement

    You are provided a string STR of length N, consisting solely of lowercase English letters.

    Your task is to remove all duplicate occurrences of characters i...

  • Ans. 

    Hashing can be used to approach this problem.
    Use a hash map and maintain count of the occurrences of all the characters in the string which character as the string and count as the value. At last, traverse the hash map and print all those characters with count > 1. 
    Time Complexity : O(N) where N is the length of the string
    Space Complexity : O(N)

  • Answered Anonymously
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

It was easy. I could answer the first question. Second one I answered really badly

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Revise C++/Java. 
Tip 3 : If you don't know much of C++/Java at least write the codes in C. 
Tip 4 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

HighRadius Interview FAQs

How many rounds are there in HighRadius Software Developer Intern interview?
HighRadius interview process usually has 1-2 rounds. The most common rounds in the HighRadius interview process are Assignment, Aptitude Test and Coding Test.
What are the top questions asked in HighRadius Software Developer Intern interview?

Some of the top questions asked at the HighRadius Software Developer Intern interview -

  1. About Hobbies like photography and stu...read more
  2. ABout basic dsa like stack qu...read more

Tell us how to improve this page.

HighRadius Software Developer Intern Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
HighRadius Software Developer Intern Salary
based on 14 salaries
₹1 L/yr - ₹8 L/yr
28% less than the average Software Developer Intern Salary in India
View more details

HighRadius Software Developer Intern Reviews and Ratings

based on 8 reviews

3.5/5

Rating in categories

3.5

Skill development

3.0

Work-life balance

3.3

Salary

3.2

Job security

3.4

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 8 Reviews and Ratings
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