Upload Button Icon Add office photos

Filter interviews by

Ripplr Front end Developer Interview Questions, Process, and Tips

Updated 5 Jul 2022

Ripplr Front end Developer Interview Experiences

1 interview found

I applied via Referral and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is virtual DOM?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM that helps in efficient rendering of web pages.

    • Virtual DOM is a concept used in ReactJS.

    • It is a lightweight copy of the actual DOM.

    • It helps in efficient rendering of web pages by minimizing the number of updates to the actual DOM.

    • When there is a change in the state of a component, the virtual DOM is updated instead of the actual DOM.

    • The virtual DOM then calculates the...

  • Answered by AI
  • Q2. Diff b/w props and redux state
  • Ans. 

    Props are used to pass data from parent to child components, while Redux state is a global state management system.

    • Props are read-only and cannot be modified by the child component.

    • Redux state can be modified using actions and reducers.

    • Props are passed down the component tree, while Redux state is accessible from any component.

    • Props are used for small-scale data sharing, while Redux is used for larger-scale state manag...

  • Answered by AI
  • Q3. Is javascript synchronous and why?
  • Ans. 

    JavaScript is synchronous because it executes code line by line and waits for each line to finish before moving on.

    • JavaScript is single-threaded, meaning it can only execute one task at a time.

    • Code is executed in the order it appears in the program.

    • If a line of code takes a long time to execute, it can block other code from running.

    • Asynchronous programming can be used to avoid blocking code and improve performance.

  • Answered by AI
  • Q4. Diff b/w useMemo and useCallBack
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to optimize expensive calculations by caching the result

    • useCallback is used to optimize expensive function creation by caching the function instance

    • useMemo returns a memoized value, while useCallback returns a memoized function

    • useMemo is used for any value that can be computed, while useCallback is used for functions tha

  • Answered by AI
Round 2 - Coding Test 

Create a Project to list detail from API and trigger server-side while paginating

Round 3 - HR 

(1 Question)

  • Q1. Tell about yourself, Enquire about previous employment and package

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more about advance concept in javascript and React

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Past experience
  • Q2. How much da u know
Round 2 - Technical 

(2 Questions)

  • Q1. Merge sort in js
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them, and then merges the sorted halves.

    • Divide the array into two halves recursively

    • Sort each half using merge sort recursively

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Hoising based question

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good and nice and it was well organized.

Round 2 - HR 

(1 Question)

  • Q1. What was ur experience?
  • Ans. 

    I have over 5 years of experience in front end development, working on various projects and technologies.

    • Developed responsive websites using HTML, CSS, and JavaScript

    • Worked with frameworks like React and Angular to build interactive user interfaces

    • Optimized website performance and implemented SEO best practices

    • Collaborated with designers and backend developers to deliver high-quality products

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

It had some coding questions related to graph.

  • Q1. 

    Dijkstra's Shortest Path Problem Statement

    You are given an undirected graph with V vertices (numbered from 0 to V-1) and E edges. Each edge connects two nodes u and v and has an associated weight represe...

  • Ans. 

    The question is about finding the shortest path distance from a source node to all vertices in an undirected graph.

    • The graph is represented by the number of vertices and edges, followed by the edges and their distances.

    • The task is to find the shortest path distance from the source node (0) to all other nodes.

    • If a node is disconnected from the source node, print the maximum positive integer value (2147483647).

    • Implement ...

  • Answered by AI
  • Q2. 

    Path Existence in Directed Graph

    Given a directed and unweighted graph characterized by vertices 'V' and edges 'E', determine if a path exists from a specified 'source' vertex to a 'destination' vertex. T...

  • Ans. 

    The task is to check if there exists a path from a given source vertex to a destination vertex in a directed and unweighted graph.

    • Read the number of test cases.

    • For each test case, read the number of vertices and edges.

    • Read the edges of the graph.

    • Read the source and destination vertices.

    • Implement a graph traversal algorithm (e.g., BFS or DFS) to check if a path exists from the source to the destination.

    • Print 'true' if a

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 180 Minutes
Round difficulty - Hard

The round was really tough only 1 coding question was asked

  • Q1. 

    Encode N-ary Tree to Binary Tree Problem Statement

    You are provided with an N-ary tree constituted of 'N' nodes, where node '1' is the head of the tree. Your task is to encode this N-ary tree into a binar...

  • Ans. 

    The task is to encode an N-ary tree into a binary tree and then decode the binary tree back into the original N-ary tree.

    • Encode the N-ary tree by representing each node as a binary tree node with its first child as the left child and subsequent children as the right child.

    • To decode the binary tree, traverse the binary tree and for each node, create a new N-ary tree node with its left child as the first child and subseq...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. Eligibility criteriaPassouts 2020/2021JUSPAY interview preparation:Topics to prepare for the interview - Strings, Arrays, Sorting algorithms, Linked List, Loops, Sliding windows, Graphs, Trees, OOPS, DSA, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 2 projects
Tip 2 : Complete competitive programming
Tip 3 : Practice more interview Questions particular to the company applying to

Application resume tips for other job seekers

Tip 1 : Don't lie on resume
Tip 2 : Try to wrap resume in one page

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Past experience
  • Q2. How much da u know
Round 2 - Technical 

(2 Questions)

  • Q1. Merge sort in js
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them, and then merges the sorted halves.

    • Divide the array into two halves recursively

    • Sort each half using merge sort recursively

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Hoising based question

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Not Selected
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 - Technical 

(4 Questions)

  • Q1. What is box model?
  • Ans. 

    The box model is a concept in CSS that describes how elements are rendered on a web page.

    • The box model consists of four components: content, padding, border, and margin.

    • The content refers to the actual content of the element, such as text or images.

    • The padding is the space between the content and the border.

    • The border is a line that surrounds the content and padding.

    • The margin is the space outside the border, separatin...

  • Answered by AI
  • Q2. Difference between let and var?
  • Ans. 

    let and var are both used to declare variables in JavaScript, but they have some key differences.

    • let is block-scoped, while var is function-scoped

    • let variables are not hoisted, while var variables are hoisted

    • let variables can be reassigned, while var variables can be redeclared

    • let variables have temporal dead zone, while var variables do not

  • Answered by AI
  • Q3. What is map, reduce and filter?
  • Ans. 

    map, reduce, and filter are higher-order functions in JavaScript used to manipulate arrays.

    • map: creates a new array by applying a function to each element of the original array

    • reduce: applies a function to an accumulator and each element in the array, reducing it to a single value

    • filter: creates a new array with all elements that pass a test implemented by a provided function

  • Answered by AI
  • Q4. Some easy DSA questions related to array and strings.

Interview Preparation Tips

Topics to prepare for Park Plus Frontend Developer Intern interview:
  • HTML
  • DSA
  • CSS
  • Javascript
Interview preparation tips for other job seekers - The interviewer is very bad. I have given correct answers for most of the questions still rejected me. I have read some negative experiences related to interview but now I myself has experienced it. Also after the interview HR didn't reply.
If anyone from the company reading this kindly improve your hiring process. This is important for the person who is giving the interview. Don't take it so lightly.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good and nice and it was well organized.

Round 2 - HR 

(1 Question)

  • Q1. What was ur experience?
  • Ans. 

    I have over 5 years of experience in front end development, working on various projects and technologies.

    • Developed responsive websites using HTML, CSS, and JavaScript

    • Worked with frameworks like React and Angular to build interactive user interfaces

    • Optimized website performance and implemented SEO best practices

    • Collaborated with designers and backend developers to deliver high-quality products

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

It had some coding questions related to graph.

  • Q1. 

    Dijkstra's Shortest Path Problem Statement

    You are given an undirected graph with V vertices (numbered from 0 to V-1) and E edges. Each edge connects two nodes u and v and has an associated weight represe...

  • Ans. 

    The question is about finding the shortest path distance from a source node to all vertices in an undirected graph.

    • The graph is represented by the number of vertices and edges, followed by the edges and their distances.

    • The task is to find the shortest path distance from the source node (0) to all other nodes.

    • If a node is disconnected from the source node, print the maximum positive integer value (2147483647).

    • Implement ...

  • Answered by AI
  • Q2. 

    Path Existence in Directed Graph

    Given a directed and unweighted graph characterized by vertices 'V' and edges 'E', determine if a path exists from a specified 'source' vertex to a 'destination' vertex. T...

  • Ans. 

    The task is to check if there exists a path from a given source vertex to a destination vertex in a directed and unweighted graph.

    • Read the number of test cases.

    • For each test case, read the number of vertices and edges.

    • Read the edges of the graph.

    • Read the source and destination vertices.

    • Implement a graph traversal algorithm (e.g., BFS or DFS) to check if a path exists from the source to the destination.

    • Print 'true' if a

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 180 Minutes
Round difficulty - Hard

The round was really tough only 1 coding question was asked

  • Q1. 

    Encode N-ary Tree to Binary Tree Problem Statement

    You are provided with an N-ary tree constituted of 'N' nodes, where node '1' is the head of the tree. Your task is to encode this N-ary tree into a binar...

  • Ans. 

    The task is to encode an N-ary tree into a binary tree and then decode the binary tree back into the original N-ary tree.

    • Encode the N-ary tree by representing each node as a binary tree node with its first child as the left child and subsequent children as the right child.

    • To decode the binary tree, traverse the binary tree and for each node, create a new N-ary tree node with its left child as the first child and subseq...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. Eligibility criteriaPassouts 2020/2021JUSPAY interview preparation:Topics to prepare for the interview - Strings, Arrays, Sorting algorithms, Linked List, Loops, Sliding windows, Graphs, Trees, OOPS, DSA, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 2 projects
Tip 2 : Complete competitive programming
Tip 3 : Practice more interview Questions particular to the company applying to

Application resume tips for other job seekers

Tip 1 : Don't lie on resume
Tip 2 : Try to wrap resume in one page

Final outcome of the interviewRejected

Skills evaluated in this interview

Ripplr Interview FAQs

How many rounds are there in Ripplr Front end Developer interview?
Ripplr interview process usually has 3 rounds. The most common rounds in the Ripplr interview process are One-on-one Round, Coding Test and HR.
What are the top questions asked in Ripplr Front end Developer interview?

Some of the top questions asked at the Ripplr Front end Developer interview -

  1. Is javascript synchronous and w...read more
  2. what is virtual D...read more
  3. Diff b/w useMemo and useCallB...read more

Tell us how to improve this page.

Operations Executive
14 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Area Sales Manager
11 salaries
unlock blur

₹6.5 L/yr - ₹16 L/yr

Sales Officer
10 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Inventory Controller
9 salaries
unlock blur

₹3.5 L/yr - ₹4.5 L/yr

Application Support Engineer
8 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Explore more salaries
Compare Ripplr with

Ola Cabs

3.4
Compare

Swiggy

3.8
Compare

Paytm

3.3
Compare

Zomato

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