Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by ACKO Team. If you also belong to the team, you can get access from here

ACKO Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 483 Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

ACKO UI Developer Interview Questions and Answers

Updated 17 Jan 2025

ACKO UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic problem solving

Round 2 - Technical 

(2 Questions)

  • Q1. Implement drag and drop
  • Ans. 

    Implementing drag and drop functionality in UI development.

    • Use HTML5 drag and drop API

    • Add 'draggable' attribute to elements you want to drag

    • Implement 'dragstart', 'dragover', 'drop' events

    • Use CSS to style dragged elements

    • Consider using libraries like jQuery UI for more complex drag and drop interactions

  • Answered by AI
  • Q2. Basic JS questions
Round 3 - HR 

(1 Question)

  • Q1. Culture fit test

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Was asked to create a UI component keeping in mind scalability and reuseability.

Round 2 - Coding Test 

General discussion about resume and projects, and then some basic JS coding questions like implement throttling and memoization.

Round 3 - Behavioral 

(3 Questions)

  • Q1. Discussion about past experiences and projects
  • Q2. Why you want to leave current job.
  • Q3. Expectations from the role and company

Interview Preparation Tips

Topics to prepare for Razorpay Front end Developer interview:
  • Javascript
  • React.Js
Interview preparation tips for other job seekers - Feedback from HR was very quick, all rounds were scheduled in quick succession. Although one point, HR did not confirm availability before scheduling the interviews. Also didn't get any feedback after getting rejected.
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
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Closures, setTimeout, Eventloop in javascript
  • Q2. How to center a div in css3
  • Ans. 

    To center a div in CSS3, use the 'margin: auto;' property along with a set width.

    • Set the width of the div

    • Use 'margin: auto;' to center the div horizontally

    • Make sure the parent container has a defined width

  • Answered by AI
  • Q3. Call , bind and apply functions in javascript
  • Ans. 

    call, bind, and apply are methods used to manipulate the context of a function in JavaScript.

    • call() is used to invoke a function with a specified 'this' value and arguments provided individually.

    • bind() is used to create a new function with a specified 'this' value and initial arguments.

    • apply() is used to invoke a function with a specified 'this' value and arguments provided as an array.

  • Answered by AI

Skills evaluated in this interview

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
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

I have to write code for a load balancer. The code should be testable and imahoild be thread safe

Interview Preparation Tips

Topics to prepare for Revolut Backend Developer interview:
  • Core Java
Interview preparation tips for other job seekers - Careful Attention to all the details should be given. Example like using list or set etc

Backend Developer Interview Questions & Answers

Slice user image Shubham Bhalerao

posted on 11 Jun 2024

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

A basic coding question was asked regarding a buisness logic.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest, and practice your problem solving skills
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to change a object's data outside the class.
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

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.

ACKO Interview FAQs

How many rounds are there in ACKO UI Developer interview?
ACKO interview process usually has 3 rounds. The most common rounds in the ACKO interview process are Coding Test, Technical and HR.
What are the top questions asked in ACKO UI Developer interview?

Some of the top questions asked at the ACKO UI Developer interview -

  1. Implement drag and d...read more
  2. Basic JS questi...read more
  3. Culture fit t...read more

Tell us how to improve this page.

ACKO UI Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

PolicyBazaar Interview Questions
3.6
 • 322 Interviews
PhonePe Interview Questions
4.0
 • 300 Interviews
PayPal Interview Questions
3.9
 • 208 Interviews
HighRadius Interview Questions
2.9
 • 180 Interviews
Fiserv Interview Questions
3.2
 • 167 Interviews
Tata AIG Interview Questions
4.1
 • 149 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Digit Insurance Interview Questions
4.0
 • 137 Interviews
View all
ACKO UI Developer Salary
based on 6 salaries
₹9.6 L/yr - ₹28 L/yr
169% more than the average UI Developer Salary in India
View more details
Assistant Manager
85 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Customer Service Executive
50 salaries
unlock blur

₹2.8 L/yr - ₹5.1 L/yr

Claims Specialist
44 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Senior Associate
40 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Team Lead
28 salaries
unlock blur

₹4.1 L/yr - ₹9.7 L/yr

Explore more salaries
Compare ACKO with

PolicyBazaar

3.6
Compare

Digit Insurance

4.0
Compare

ICICI Lombard General Insurance Company

3.7
Compare

Bajaj Allianz General Insurance

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