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

Updated 20 Jun 2024

HighRadius Technical Intern Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quant, logical and vocabulary

Round 2 - Coding Test 

Coding and aptitude was on the same round

Round 3 - Technical 

(2 Questions)

  • Q1. Asked About myself
  • Q2. Armstrong number calculation question

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

General DSA with some ds questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Walk through resume
  • Q2. Reverse linked list
  • Q3. Use of oops in some cases
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
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

5 sections networking, os, aptitude, dbms, data structures

Round 2 - Technical 

(1 Question)

  • Q1. About resume and projects accomplished

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect with basics and resume
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about your self
Round 2 - One-on-one 

(1 Question)

  • Q1. Know about the process
Round 3 - One-on-one 

(1 Question)

  • Q1. Mental ability check like u r capable for this role or not
Round 4 - One-on-one 

(1 Question)

  • Q1. Very toughest round like overall in this round u need to tell and as well as they asked we should know properly what kind of process they r running

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to be confident
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sorting algorithm
  • Ans. 

    Sorting algorithms are used to arrange elements in a specific order.

    • Sorting algorithms can be categorized as comparison-based or non-comparison-based.

    • Examples of sorting algorithms include Bubble Sort, Merge Sort, and Quick Sort.

    • Efficiency of sorting algorithms is measured in terms of time complexity and space complexity.

  • Answered by AI
  • Q2. Secod highest salary

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

So total 4 coding questions 2-medium 2-hard

Round 2 - One-on-one 

(5 Questions)

  • Q1. One-on-one round more conditional questions 4-5 technical questions
  • Q2. 1os question 1dbms 1java 1cpp 1 computer network que and more situational questions
  • Q3. Diff between rdbms dbms
  • Ans. 

    RDBMS is a type of DBMS that stores data in a structured format with relationships between tables.

    • RDBMS enforces ACID properties for database transactions.

    • RDBMS uses SQL for querying and managing data.

    • DBMS is a general term for any system that manages databases, while RDBMS is a specific type.

    • DBMS may not support relationships between tables like RDBMS does.

  • Answered by AI
  • Q4. Opps concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation d...

  • Answered by AI
  • Q5. Sorting algorithms in any language
  • Ans. 

    Sorting algorithms are used to arrange elements in a specific order in an array.

    • Common sorting algorithms include Bubble Sort, Selection Sort, Insertion Sort, Merge Sort, Quick Sort, and Heap Sort.

    • Each algorithm has its own time complexity and best/worst case scenarios.

    • For example, Merge Sort has a time complexity of O(n log n) and is efficient for large datasets.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Visa Summer Intern interview:
  • OS
  • DBMS
  • opps
  • Java
  • CPP
  • situation

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in 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 tips
Round 2 - Coding Test 

You will be given a dataset and a questionnaire to be solved over it

Round 3 - One-on-one 

(4 Questions)

  • Q1. Explain confidance interval
  • Ans. 

    Confidence interval is a range of values that is likely to contain the true population parameter with a certain level of confidence.

    • Confidence interval is used to estimate the population parameter based on a sample statistic.

    • It is calculated by taking the sample mean and adding or subtracting the margin of error.

    • The level of confidence is typically set at 95% or 99%.

    • For example, a 95% confidence interval for the averag...

  • Answered by AI
  • Q2. Explain logistic regression
  • Ans. 

    Logistic regression is a statistical method used to analyze and model the relationship between a binary dependent variable and one or more independent variables.

    • It is used to predict the probability of a binary outcome (0 or 1).

    • It uses a sigmoid function to map the input values to the output probability.

    • It is commonly used in machine learning for classification problems.

    • Example: predicting whether a customer will buy a...

  • Answered by AI
  • Q3. Use of confusion matrix
  • Ans. 

    Confusion matrix is a table used to evaluate the performance of a classification model.

    • It helps in calculating various metrics like accuracy, precision, recall, F1 score, etc.

    • It compares the predicted values with the actual values to identify true positives, true negatives, false positives, and false negatives.

    • It is commonly used in machine learning and data science to evaluate the performance of classification models.

    • ...

  • Answered by AI
  • Q4. Explain academic projects
  • Ans. 

    Academic projects are assignments given to students to apply their theoretical knowledge in practical scenarios.

    • Academic projects are designed to help students gain hands-on experience in their field of study.

    • They require students to apply their theoretical knowledge to solve real-world problems.

    • Examples of academic projects include building a website, designing a software application, conducting a research study, or c...

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

(2 Questions)

  • Q1. What do you know about crif
  • Q2. What do you want to learn here

Interview Preparation Tips

Topics to prepare for Crif Solutions Intern interview:
  • Advance excel
Interview preparation tips for other job seekers - They focus more on practical than theory. You can use python to solve the questions but using excel will be more appreciated

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

It was campus through internship

Round 2 - One-on-one 

(2 Questions)

  • Q1. So it was through college so they did not ask me more
  • Q2. Tell me about self Why investment banking

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

HighRadius Interview FAQs

How many rounds are there in HighRadius Technical Intern interview?
HighRadius interview process usually has 3 rounds. The most common rounds in the HighRadius interview process are Coding Test, Technical and Aptitude Test.

Tell us how to improve this page.

HighRadius Technical Intern Interview Process

based on 1 interview

Interview experience

2
  
Poor
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.5
 • 95 Interviews
Rupeek Interview Questions
3.7
 • 60 Interviews
View all
Associate Software Engineer
408 salaries
unlock blur

₹5.5 L/yr - ₹11 L/yr

Associate Consultant
338 salaries
unlock blur

₹6.6 L/yr - ₹11 L/yr

Associate Software Engineer 2
195 salaries
unlock blur

₹6.3 L/yr - ₹13 L/yr

Techno Functional Consultant
189 salaries
unlock blur

₹6 L/yr - ₹11.5 L/yr

Consultant
180 salaries
unlock blur

₹6.5 L/yr - ₹19.5 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