Upload Button Icon Add office photos

Filter interviews by

AntWak Associate Software Engineer Interview Questions and Answers

Updated 30 Jul 2023

AntWak Associate Software Engineer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Jul 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 - Technical 

(1 Question)

  • Q1. Basics of html css and js
Round 3 - One-on-one 

(1 Question)

  • Q1. Some dsa and react questions
Round 4 - HR 

(1 Question)

  • Q1. General discussion about candidate and company

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was an online assessment. Some coding questions. Some cs fundamental mcqs. SQL query, Rest Api question.

Round 2 - Assignment 

An assignment to create a game using nodejs/ go lang/ java.

Round 3 - Technical 

(2 Questions)

  • Q1. Discussion related to Assignment. Told some changes and told to add some more functionalities.
  • Q2. Some APIS were given. It was case study. You had to show the dishes to a customer according to his preferences.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The exam duration is one and a half hours.

Round 2 - Coding Test 

The total exam time is one and a half hours.

Round 3 - Group Discussion 

It encompasses all topics related to full stack development.

Round 4 - Technical 

(2 Questions)

  • Q1. Asks questions on SQL
  • Q2. Asks question in typical topics
Round 5 - HR 

(1 Question)

  • Q1. Where do you see yourself in two years?
  • Ans. 

    In two years, I see myself as a senior software developer leading a team on innovative projects.

    • Advancing to a senior software developer role

    • Leading a team on new and innovative projects

    • Continuing to enhance my technical skills through ongoing learning and training

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. LRU Cache - how to tackle
  • Ans. 

    LRU Cache is a data structure that maintains a list of items in order of most recently used to least recently used.

    • Implement using a doubly linked list and a hashmap for efficient operations

    • When an item is accessed, move it to the front of the list

    • When the cache is full, remove the least recently used item from the end of the list

  • Answered by AI
  • Q2. LRU Cache implementation based on a real time system. How would the main work which will be called etc etc
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(4 Questions)

  • Q1. Asked to write a program to check whether string is valid or not. String consists of only three kind of special characters "(), [], {}". We need to return true if all special characters are in correct for...
  • Q2. What is useRef hook used for?
  • Ans. 

    useRef hook is used to persist a mutable value across renders without causing a re-render.

    • Used to store mutable values that do not trigger re-renders.

    • Commonly used for accessing DOM elements or storing previous values.

    • Does not cause a re-render when the value changes.

  • Answered by AI
  • Q3. What are the best practices to avoid rerenders and to improve performance
  • Ans. 

    Use memoization, virtual DOM, and shouldComponentUpdate to avoid unnecessary rerenders and improve performance.

    • Implement memoization to store the result of expensive function calls and avoid recalculating them.

    • Use virtual DOM to efficiently update only the parts of the UI that have changed.

    • Override shouldComponentUpdate to prevent unnecessary rerenders by comparing current and next props/state.

  • Answered by AI
  • Q4. What are callbacks, Promises, async await
  • Ans. 

    Callbacks, Promises, async await are asynchronous programming concepts in JavaScript.

    • Callbacks are functions passed as arguments to another function to be executed later.

    • Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • async await is a syntax for writing asynchronous code that looks synchronous, making it easier to read and maintain.

    • Example: Using a callback to handle th...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. The question was about Nodejs
  • Q2. The question was to build a linked list in Nodejs
Round 2 - Technical 

(2 Questions)

  • Q1. The first question was related to DSA
  • Q2. The question was related to SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Binary search for closest element
  • Ans. 

    Binary search to find the closest element in a sorted array

    • Implement binary search to find the target element in the array

    • Keep track of the closest element found so far while searching

    • Update the closest element if a closer one is found during the search

  • Answered by AI
  • Q2. String manipulation
Round 2 - Technical 

(1 Question)

  • Q1. Low level Design for an online e-commerce website
  • Ans. 

    Low level design for an online e-commerce website involves designing the architecture and components of the website.

    • Identify the main components such as user interface, database, payment gateway, product catalog, etc.

    • Design the database schema to store user information, product details, orders, etc.

    • Implement user authentication and authorization mechanisms for secure access.

    • Integrate payment gateway for processing tran...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zepto Software Developer interview:
  • DSA
  • Design patterns

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Questions were crayon box ,the bot and the game and happy neighbourhood for 90 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Array basics was asked
  • Q2. Segment tree,prefix sum
Round 3 - Technical 

(1 Question)

  • Q1. Low level design was asked
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How was your previous organization
  • Ans. 

    My previous organization was a fast-paced tech startup focused on developing cutting-edge software solutions.

    • Highly collaborative work environment

    • Emphasis on innovation and creativity

    • Agile development methodologies were followed

    • Regular team meetings and code reviews

    • Opportunities for professional growth and learning

  • Answered by AI
  • Q2. Please create timer using react
  • Ans. 

    Create a timer using React

    • Use useState hook to store the timer value

    • Use useEffect hook to update the timer every second

    • Display the timer value in the component's render method

  • Answered by AI

Skills evaluated in this interview

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

Majorily on SQL and Databases

Round 2 - Technical 

(2 Questions)

  • Q1. Align two images in a page with same width and same height
  • Ans. 

    Use CSS to align two images with same width and height on a page

    • Set both images to have the same width and height using CSS

    • Use flexbox or grid layout to align the images horizontally or vertically

    • Adjust margins or padding as needed for spacing

  • Answered by AI
  • Q2. Array related question
Round 3 - HR 

(2 Questions)

  • Q1. Situation based question
  • Q2. Majorily focused on project

Skills evaluated in this interview

AntWak Interview FAQs

How many rounds are there in AntWak Associate Software Engineer interview?
AntWak interview process usually has 4 rounds. The most common rounds in the AntWak interview process are Resume Shortlist, Technical and One-on-one Round.
What are the top questions asked in AntWak Associate Software Engineer interview?

Some of the top questions asked at the AntWak Associate Software Engineer interview -

  1. Basics of html css and...read more
  2. Some dsa and react questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 425 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
CARS24 Interview Questions
3.6
 • 320 Interviews
upGrad Interview Questions
3.7
 • 205 Interviews
Zepto Interview Questions
3.5
 • 191 Interviews
Blinkit Interview Questions
3.7
 • 175 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
Tata 1mg Interview Questions
3.6
 • 144 Interviews
Paisabazaar.com Interview Questions
3.5
 • 137 Interviews
View all
Software Engineer
5 salaries
unlock blur

₹5 L/yr - ₹10.1 L/yr

Video Editor
4 salaries
unlock blur

₹1 L/yr - ₹5.3 L/yr

Manager - PRE Sales
4 salaries
unlock blur

₹4.3 L/yr - ₹8.2 L/yr

HR Manager
3 salaries
unlock blur

₹3.8 L/yr - ₹3.8 L/yr

Product Manager
3 salaries
unlock blur

₹6.5 L/yr - ₹22.1 L/yr

Explore more salaries
Compare AntWak with

upGrad

3.7
Compare

Simplilearn

3.2
Compare

Great Learning

3.7
Compare

Imarticus Learning

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