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

Updated 5 Apr 2023

HighRadius Full Stack Software Developer Interview Experiences

1 interview found

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

Easy questions were asked. Practice aptitude questions from net along with javascript

Round 2 - One to one 

(2 Questions)

  • Q1. Write a servlet in java
  • Ans. 

    A servlet in Java is a server-side component that extends the capabilities of servers.

    • Create a class that extends HttpServlet

    • Override the doGet or doPost method

    • Implement the logic for handling requests and generating responses

    • Register the servlet in web.xml or using annotations

  • Answered by AI
  • Q2. Sql queries and jdbc questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and be prepared with your project and basic coding concepts

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sal queries simeple data structure question finding largest number in am array.
  • Q2. Solid principal

Interview Preparation Tips

Interview preparation tips for other job seekers - Simply waste of time they asked me 3-4 questions and didn't responded .
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It will be a basic maths questions.

Round 2 - Group Discussion 

As a general topic of trend in world.

Round 3 - Coding Test 

To be known for programming knowledge about us.

Round 4 - Technical 

(2 Questions)

  • Q1. Programming oridanited
  • Q2. Skill knowledge questions
Round 5 - HR 

(2 Questions)

  • Q1. Tell me about your self.
  • Q2. Family background .

Interview Preparation Tips

Interview preparation tips for other job seekers - pls don't stress the candidate to suffer as high .
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. System design interview

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Longest Palindromic Subsequence Problem Statement

    Given a string A consisting of lowercase English letters, determine the length of the longest palindromic subsequence within A.

    Explanation:

    • A subsequ...
  • Ans. Recursive Approach

    The main idea behind this approach is to use recursion. The idea is to compare the first character of the string A[i..j] with its last character. There are two possibilities:

    1. If the first character of the string is the same as the last character, we include first and last characters in the palindrome and do a recursive call for the remaining substring A[i + 1, j - 1].
    2. If the last character of the string...
  • Answered Anonymously
  • Q2. 

    Word Pattern Problem Statement

    Given two strings S and T, determine if S follows the same pattern as T.

    A full match means there is a bijection between a letter of T and a non-empty word of S.

    Example:

    ...
  • Ans. Hashmap

    We will use two hashmaps ‘charToWord’ and ‘wordToChar’ to track which character of ‘T’ maps to which word of ‘S’ and which word of ‘S’ maps to which character of ‘T’,  respectively.

     

    Here is the algorithm:

    1. We initialise two hashmaps ‘charToWord’ and ‘wordToChar’.
    2. We scan each character-word pair
      1. If the character is not present in ‘charToWord’ 
        1. If the word is already present in ‘wordToChar’ 
          1. Return ...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 40 Minutes
Round difficulty - Easy

  • Q1. 

    Level Order Traversal Problem Statement

    Given a binary tree of integers, return the level order traversal of the binary tree.

    Input:

    The first line contains an integer 'T', representing the number of te...
  • Ans. Breadth First Search

    In the level order traversal, we will be using queue data structure which has the property FIRST IN FIRST OUT that’s why which nodes come first in current level the children of that node will also come first for the next level. So, we visit all the nodes one by one of the current level and push into the queue so that when we will be complete with the current level, then we can start exploring nodes ...

  • Answered Anonymously
  • Q2. 

    Next Greater Node in Linked List Problem Statement

    In a set of linked ninja villages, the goal is to determine if a stronger ninja exists in the nearest village linked ahead. Given a linked list of 'N' in...

  • Ans. Brute Force

    We will iterate through the given linked list of elements (nodes) with the help of two nested loops. Where we will check for every node whether there exists a next node with a value bigger than the value of current node and subsequently build the ‘ans’ list (array) and return it.

     

    The algorithm will be-

     

    1. We will run a loop for the starting node (head) of the given linked list.
    2. From every node we will ...
  • Answered Anonymously
Round 3 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Full Stack Engineer in PuneEligibility criteriaAbove 7 CGPA, Resume shortlisting on the basis of projectsMasterCard interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, JavaScript, HTML/CSS, ReactTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Be consistent, practice regularly whatever you read/study.
Tip 2 : Apply what you learn through code.

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : If you have an internship or training explain it in a proper way like what are the techniques you learned during your training.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Jul 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

This was a coding round conducted from 12 PM to 2 PM and it was not proctored but we could not switch the tabs. There were 2 coding questions each of 100 marks. The MCQ had HTML,CSS, JS, SQL, Coding and aptitutude questions.

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. Backtracking
    1. Instead of checking all the places on the chessboard, we can use backtracking and place queen row-wise or column-wise.
    2. Suppose we place queens row-wise, and we start with the very first row. Place the queen and move to the next row until either there is a solution or there are no viable cells left.
    3. As we backtrack, check to place the queen in the different columns of the same row.
    4. When we can place a queen at ...
  • Answered Anonymously
  • Q2. 

    Rearrange String Problem Statement

    Given a string ‘S’, your task is to rearrange its characters so that no two adjacent characters are the same. If it's possible, return any such arrangement, otherwise re...

  • Ans. Brute force

    In this approach, we will generate all the possible rearrangements of the string and check if the current string in our rearrangement does not have any two adjacent characters that are the same. If we can find any string which satisfies our criteria then we will return that string else we will return “not possible”.

     

    We can implement the above approach by – 

    1. Generate all permutations of a string.
    2. For ...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

There were two interviewers. They started by asking me to introduce myself and asked me to explain any one of my projects in my resume and after that, they asked me about the ML algorithms used in my project and about the difficulties faced. What is NaN property in JavaScript? This took around 10 minutes. They also asked 2 coding questions.
It was conducted at 10 AM on CodePair and MS Teams. Interviewers were friendly.

  • Q1. 

    Group Anagrams Together

    Given an array/list of strings STR_LIST, group the anagrams together and return each group as a list of strings. Each group must contain strings that are anagrams of each other.

    E...

  • Ans. Sorting based Approach

    The idea behind this approach is that two or more than two strings are anagrams if and only if their sorted strings are equal. So we will use a HashMap, let’s say “anagramGroup”, where each key is a sorted string, and the key will be mapping to the list of indices from the given list of strings that form a group of anagrams. This means that if we sort the strings at those indices, we will get the ...

  • Answered Anonymously
  • Q2. 

    Friends Pairing Problem

    The task is to determine the total number of ways to pair up 'N' friends or leave some of them single, following these rules:

    1. Each friend can either pair with one other friend ...
  • Ans. Bruteforce

    The idea is to solve the problem using recursion and break down the problem into different subproblems.

    Let’s define NUMBER_OF_WAYS(N) as the total number of ways ‘N’ friends can be paired up or remain single.

    The N-th person has two choices - either remain single or pair up with one of the other ‘N - 1’ friends.

    If he remains single, then the number of possible pairings are NUMBER_OF_WAYS(N - 1) as there are (N...

  • Answered Anonymously
Round 3 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

There were 2 questions based on data structures, the round started from 1.15 PM .Some SQL questions like What is a Subquery? What are its types? What are UNION, MINUS and INTERSECT commands?

  • Q1. 

    Vertical Order Traversal Problem Statement

    You are given a binary tree, and the task is to perform a vertical order traversal of the values of the nodes in the tree.

    For a node at position ('X', 'Y'), th...

  • Ans. Efficient Approach

    The intuition is to find the breadth of the tree first so that we can beforehand know the maximum horizontal distance and minimum horizontal distance of a node from the root node. We can use the absolute value of minimum horizontal distance as an offset. Now we can use an array/list visited to store the visited nodes where ith element will store the node at (i - offset”) distance horizontally from the...

  • Answered Anonymously
  • Q2. 

    Divide Two Integers Problem Statement

    You are given two integers dividend and divisor. Your task is to divide the integers without using multiplication, division, and modular operators. Return the quotien...

  • Ans. Using Subtraction

    We can subtract the divisor from the dividend until the dividend is greater than the divisor. The quotient will be equal to the number of total subtractions performed.

     

    Below is the detailed algorithm:

     

    1. Store the ‘IS_DIVIDEND_NEGATIVE = false’ and ‘IS_DIVISOR_NEGATIVE = false’.
    2. Check if the ‘DIVIDEND’ and ‘DIVISOR’ are positive or negative and update the values of ‘IS_DIVIDEND_NEGATIVE’ and ...
  • Answered Anonymously
Round 4 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

The round was at 7.30 PM and I was asked to introduce myself and we had basic talk on where I live and my interests. I asked about the work culture and about the role at the end.

  • Q1. You are presented with a puzzle where there are n balloons, and your task is to burst the maximum number of balloons using an arrow. How would you approach solving this puzzle?
  • Ans. 

    This was basically finding a maximum number of points in a line. I coded that but he wanted an improved solution. He told me to assume the positions of balloons in a matrix where 1 represents if the balloon is present and vice versa. Then I had to find which row or column or diagonal had the maximum number of 1’s. Later he asked me if I had some questions.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from VIT University. I applied for the job as Fullstack Developer in ChennaiEligibility criteriaPercentage Criteria in X and XII: 85% or 8.5 CGPA, Pursuing Degree: 85% or 8.5 CGPA, No Standing ArrearsPaypal interview preparation:Topics to prepare for the interview - Trees, Graphs, Dynamic Programming, Arrays, StacksTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 400 questions of leetcode topics wise.
Tip 2 : Participate in hackathons.
Tip 3 : Have 2 good projects atleast and be very good in project concepts.

Application resume tips for other job seekers

Tip 1 : Have good projects in your resume and have clear idea of what you have done in those.
Tip 2 : Mention languages, frameworks, subjects only when you have proper hold on them, don't mention things you don't know properly.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. React questions How do you organize code in react (components, containers, separation of logic) ? MVC patterns UI design Finding local maxima in series of numbers
  • Q2. Basics of HTML, CSS, Javascript css transform properties implement redux publish subscribe model
  • Q3. Singleton pattern Few algorithmic questions Anagram problems Design patterns
  • Q4. JSON.stringify implementation Problem solving methodology Array - sorting and finding maxium related problem middlewares in node js

Interview Preparation Tips

Round: Test
Experience: Hacker rank testing round

The questions were based on dynamic programming


HighRadius Interview FAQs

How many rounds are there in HighRadius Full Stack Software Developer interview?
HighRadius interview process usually has 3 rounds. The most common rounds in the HighRadius interview process are Resume Shortlist and Aptitude Test.
What are the top questions asked in HighRadius Full Stack Software Developer interview?

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

  1. Write a servlet in j...read more
  2. Sql queries and jdbc questi...read more

Tell us how to improve this page.

HighRadius Full Stack Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 513 Interviews
PayPal Interview Questions
3.9
 • 209 Interviews
Freshworks Interview Questions
3.5
 • 154 Interviews
Razorpay Interview Questions
3.6
 • 149 Interviews
Visa Interview Questions
3.5
 • 137 Interviews
MasterCard Interview Questions
4.0
 • 133 Interviews
Angel One Interview Questions
3.9
 • 131 Interviews
Revolut Interview Questions
2.6
 • 93 Interviews
Rupeek Interview Questions
3.7
 • 60 Interviews
View all
HighRadius Full Stack Software Developer Salary
based on 5 salaries
₹8.7 L/yr - ₹15 L/yr
32% more than the average Full Stack Software Developer Salary in India
View more details

HighRadius Full Stack Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

1.0

Skill development

4.0

Work-life balance

2.0

Salary

2.0

Job security

1.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Associate Software Engineer
415 salaries
unlock blur

₹5.5 L/yr - ₹11 L/yr

Associate Consultant
406 salaries
unlock blur

₹6 L/yr - ₹13.3 L/yr

Consultant
192 salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Associate Software Engineer 2
192 salaries
unlock blur

₹6.3 L/yr - ₹13 L/yr

Techno Functional Consultant
190 salaries
unlock blur

₹6 L/yr - ₹13 L/yr

Explore more salaries
Compare HighRadius with

Chargebee

4.0
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