Upload Button Icon Add office photos

RippleHire

Compare button icon Compare button icon Compare

Filter interviews by

RippleHire Interview Questions and Answers

Updated 8 May 2024
Popular Designations

RippleHire Interview Experiences

2 interviews found

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 Sep 2023. 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 - Aptitude Test 

Basic quants and reasoning from India Bix

Round 3 - Technical 

(1 Question)

  • Q1. Techincal Questions are mostly asked on technologies mentioned in resume. Technical questions on OOPS concept. MultIThreading and Exception Handling(Important) Some basic code on Arrays and String like r...
Round 4 - Technical 

(1 Question)

  • Q1. Same types of question asked in the first technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - If your Core Java and Basics of SQL are good you can clear the 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 before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It was a on campus interview so the process was smooth first round was mcq questions on Java nad SQL the shortlisted candidates were called for interview which was quite easy basic questions were asked
Round 2 - HR 

(1 Question)

  • Q1. About myself and hobbies and all

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about RippleHire?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is the TPRM lifecycle and why is it important?
  • Ans. 

    The TPRM lifecycle involves assessing, managing, and monitoring third-party risks to ensure compliance and protect organizational interests.

    • Identification: Recognizing third-party vendors and their potential risks, e.g., a cloud service provider.

    • Assessment: Evaluating the risk level of each vendor, such as financial stability or data security practices.

    • Mitigation: Implementing strategies to reduce identified risks, lik...

  • Answered by AI
  • Q2. What are supplier metrics, and how can they be measured?
  • Ans. 

    Supplier metrics evaluate supplier performance and reliability, aiding businesses in decision-making and relationship management.

    • On-time delivery rate: Measures the percentage of orders delivered on or before the promised date. Example: 95% on-time delivery.

    • Quality of goods: Assesses the defect rate of products supplied. Example: Less than 2% defect rate in delivered items.

    • Cost competitiveness: Compares supplier pricin...

  • Answered by AI
  • Q3. How do you manage both old and new vendors in terms of risk management?
  • Ans. 

    Effective vendor risk management involves assessing, monitoring, and engaging both old and new vendors strategically.

    • Conduct thorough risk assessments for new vendors, including financial stability and compliance checks.

    • For old vendors, regularly review performance metrics and compliance with contractual obligations.

    • Implement a vendor scorecard system to evaluate both old and new vendors based on key performance indica...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain a positive attitude and perform your best in the interview. If you encounter a question you do not understand, seek clarification from the interviewer rather than answering incorrectly and potentially missing out on an opportunity.

I applied via Referral and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Count distinct pairs with difference equal to k and further optimize.
  • Ans. 

    Count distinct pairs with difference equal to k and optimize.

    • Use a hash set to store the elements of the array.

    • Iterate through the array and check if the current element + k or current element - k exists in the hash set.

    • Increment the count if a pair is found and add the current element to the hash set.

    • Return the count of distinct pairs.

  • Answered by AI

Interview Preparation Tips

What is your professional and academic background?At the time of the interview, I had 1 - 3 years of experience.Apna interview Rounds:Round 1
Round type - DS/Algo
Round duration - 60 Minutes
Round description -
Medium to advanced data structure and algorithm questions. Basic questions about previous work were asked.
This round would require practice, as questions had a level of difficulty.

Round 2
Round type - Software design
Round duration - 60 Minutes
Round description -
The task was to design a dashboard for ipl season performances. It was basically a low level design question in terms of database structure, schemas, database design etc, in order for the dashboard to answer commonly asked questions and scale efficiently.

Round 3
Round type - Manager round
Round description -
General discussion about expectations in terms of tasks, current tech stack, company culture, learning opportunities etc.
Apna interview Preparation:What topics did you prepare for the interview? - 1. Basic system design and algo/DS
2. NoSql vs sql use casesWhat resources did you refer to prepare for the interview? - Gfg, YouTube tutorials for system design, the dynamodb book for conceptual knowledge.What tips would you give to other job seekers? - 1. Cover basic questions for databases, data modeling, access patterns etc.
2. Be proficient in simple to medium coding questions.What was the final outcome of your interview?Selected

Skills evaluated in this interview

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

I applied via Internshala and was interviewed before Nov 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 tips
Round 2 - Coding Test 

SQL, Joins, Window Functions, Aggregations

Round 3 - Technical 

(1 Question)

  • Q1. SQL Open book test
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2022. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. How event loop works
  • Ans. 

    Event loop is a mechanism that allows for efficient handling of multiple events in a single thread.

    • Event loop is used in asynchronous programming to handle non-blocking I/O operations.

    • It continuously checks for events in a queue and executes their associated callbacks.

    • Event loop is commonly used in JavaScript for handling browser events and Node.js for handling server requests.

    • It prevents blocking of the main thread by...

  • Answered by AI
  • Q2. Polyfill of promise.all
  • Ans. 

    A polyfill for Promise.all that executes multiple promises concurrently and resolves when all are fulfilled or any is rejected.

    • Create a function named 'promiseAll' that accepts an array of promises.

    • Use 'Promise.resolve()' to handle non-promise values.

    • Utilize 'Promise.allSettled()' to track the status of each promise.

    • Return a single promise that resolves with an array of results or rejects with the first error encounter...

  • Answered by AI
  • Q3. Polyfill of bind
  • Ans. 

    Polyfill of bind is a function that allows you to bind a specific context to a function.

    • The bind polyfill can be implemented using the apply method.

    • It returns a new function with the specified context bound to it.

    • The polyfill can also accept additional arguments that will be passed to the original function.

    • Here's an example of a bind polyfill implementation:

    • ```javascript if (!Function.prototype.bind) { Function.proto...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for javascript core concepts and react lifecycle

Skills evaluated in this interview

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

(1 Question)

  • Q1. Case study on data analysis
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Introduce yourself, your achievements and projects
  • Ans. 

    I am a seasoned Business Analyst with a track record of successful projects and achievements.

    • Led a cross-functional team to implement a new CRM system, resulting in a 20% increase in customer satisfaction

    • Developed a data-driven pricing strategy that led to a 15% increase in revenue

    • Managed a project to streamline inventory management processes, reducing costs by 10%

  • Answered by AI
  • Q2. Basic sql questions like foreign key and primary key, then joins

Intern Interview Questions & Answers

Apna user image Ranjith Kumar S R

posted on 6 Oct 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Say me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships at tech companies

    • Participated in coding competitions

  • Answered by AI
  • Q2. Say about the previous experience
  • Ans. 

    I have previous experience working as a marketing intern at XYZ Company.

    • Assisted in creating social media content and managing online campaigns

    • Conducted market research and analysis to identify target audience

    • Collaborated with team members to develop marketing strategies

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Chill and be simple
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Achievement and how was it achieved
  • Ans. 

    I achieved the highest sales record in my team by implementing a new sales strategy.

    • Implemented a new sales strategy to increase sales

    • Analyzed market trends and customer needs to develop the strategy

    • Collaborated with team members to execute the strategy effectively

    • Regularly monitored sales performance and made adjustments as needed

    • Achieved highest sales record in the team within 6 months

  • Answered by AI
  • Q2. Explain your current/previous role in detail
  • Ans. 

    I was responsible for managing client relationships and coordinating project deliverables.

    • Managed client relationships and served as the main point of contact for all communication

    • Coordinated project deliverables and ensured timely completion

    • Collaborated with cross-functional teams to gather requirements and develop project plans

    • Monitored project progress and identified any potential risks or issues

    • Provided regular upd...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Details of the previous domain related experience
Round 4 - HR 

(1 Question)

  • Q1. Where do you see yourself after 5 years?
  • Ans. 

    In 5 years, I see myself as a Senior Associate, leading a team and contributing to the growth of the company.

    • Advancing to a Senior Associate position

    • Leading a team and taking on more responsibilities

    • Contributing to the growth and success of the company

    • Continuing to learn and develop new skills

    • Building strong relationships with clients and colleagues

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well-prepared for the interview. Candidness is go to bring along

RippleHire Interview FAQs

How many rounds are there in RippleHire interview?
RippleHire interview process usually has 3 rounds. The most common rounds in the RippleHire interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for RippleHire 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 RippleHire. The most common topics and skills that interviewers at RippleHire expect are Hibernate, Recruitment, SQL, Java and MySQL.

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

CIEL HR Interview Questions
3.9
 • 58 Interviews
Apna Interview Questions
3.2
 • 37 Interviews
NR Consulting Interview Questions
4.6
 • 27 Interviews
Taskmo Interview Questions
3.8
 • 7 Interviews
Able Jobs Interview Questions
3.2
 • 6 Interviews
View all

RippleHire Reviews and Ratings

based on 15 reviews

3.6/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

3.8

Salary

4.2

Job security

3.9

Company culture

3.5

Promotions

3.2

Work satisfaction

Explore 15 Reviews and Ratings
Devops Engineer

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

ADAS System Engineer

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Account Manager

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Explore more jobs
Junior Software Engineer
9 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Customer Success Associate
9 salaries
unlock blur

₹1.5 L/yr - ₹5.2 L/yr

Customer Success Engineer
8 salaries
unlock blur

₹1 L/yr - ₹6.1 L/yr

Software Engineer
7 salaries
unlock blur

₹5 L/yr - ₹10.8 L/yr

Manager Enterprise Sales
5 salaries
unlock blur

₹8 L/yr - ₹12 L/yr

Explore more salaries
Compare RippleHire with

CIEL HR

3.9
Compare

Apna

3.2
Compare

NR Consulting

4.6
Compare

T&N Business Services

4.8
Compare
write
Share an Interview