Upload Button Icon Add office photos
Engaged Employer

i

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

Antino Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Antino Interview Questions and Answers

Updated 8 Apr 2025
Popular Designations

18 Interview questions

A Node JS Developer was asked 3mo ago
Q. Given an array, remove the duplicate elements from it.
Ans. 

Removing duplicates from an array of strings can be achieved using various methods in JavaScript, ensuring unique values.

  • Using Set: The simplest way to remove duplicates is by converting the array to a Set and back to an array. Example: `const uniqueArray = [...new Set(array)];`

  • Using Filter: You can filter the array by checking the index of each element. Example: `const uniqueArray = array.filter((item, index) =&g...

View all Node JS Developer interview questions
A Software Developer was asked 3mo ago
Q. What are the basic concepts of JavaScript, including the event loop?
Ans. 

JavaScript is a versatile programming language with key concepts like variables, functions, and the event loop for asynchronous operations.

  • Variables: Used to store data. Example: let x = 10;

  • Functions: Blocks of code that perform tasks. Example: function greet() { console.log('Hello'); }

  • Objects: Collections of key-value pairs. Example: const person = { name: 'Alice', age: 25 };

  • Arrays: Ordered lists of values. Examp...

View all Software Developer interview questions
A Senior Software Developer was asked 7mo ago
Q. What are Django signals, and what is their application in web development?
Ans. 

Django signals are a way for decoupled applications to get notified when certain actions occur elsewhere in the application.

  • Django signals allow certain senders to notify a set of receivers when some action has taken place.

  • They are used for decoupling various components of a web application.

  • Signals are useful for executing code based on certain events, such as user login, object creation, etc.

  • Example: Sending an e...

View all Senior Software Developer interview questions
A Senior Software Developer was asked 7mo ago
Q. What are Django generic views?
Ans. 

Django generic views are pre-built views provided by Django to simplify common tasks like displaying data from a database.

  • Django generic views help reduce code duplication by providing ready-to-use views for common tasks like displaying objects from a database.

  • They are generic in nature and can be easily customized to suit specific requirements.

  • Examples include ListView for displaying a list of objects, DetailView...

View all Senior Software Developer interview questions
A NodeJS was asked 8mo ago
Q. What is the architecture of Node.js?
Ans. 

Node.js uses an event-driven, non-blocking I/O model, making it efficient and suitable for scalable network applications.

  • Single-threaded event loop: Handles multiple connections concurrently without creating new threads.

  • Non-blocking I/O: Allows operations like reading files or querying databases without freezing the application.

  • JavaScript runtime: Built on Chrome's V8 engine, enabling fast execution of JavaScript ...

A NodeJS was asked 8mo ago
Q. What is Node.js?
Ans. 

Node.js is a JavaScript runtime built on Chrome's V8 engine, enabling server-side scripting and asynchronous event-driven architecture.

  • Built on Chrome's V8 JavaScript engine for high performance.

  • Uses an event-driven, non-blocking I/O model for scalability.

  • Ideal for building real-time applications like chat apps (e.g., Socket.io).

  • Supports npm (Node Package Manager) for easy package management.

  • Allows developers to u...

A Backend Developer was asked 8mo ago
Q. Explain the event loop in Node.js.
Ans. 

Event loop in Node.js manages asynchronous operations by executing callbacks when certain events occur.

  • Event loop is a single-threaded mechanism that allows Node.js to perform non-blocking I/O operations.

  • It continuously checks the call stack for any functions that need to be executed, as well as the callback queue for any functions that are ready to be executed.

  • Event loop prioritizes the execution of I/O operation...

View all Backend Developer interview questions
Are these interview questions helpful?
A Backend Developer was asked 8mo ago
Q. Write the code for quick sort
Ans. 

Quick sort is a popular sorting algorithm that uses divide and conquer approach.

  • Divide the array into two sub-arrays based on a pivot element

  • Recursively sort the sub-arrays

  • Combine the sorted sub-arrays to get the final sorted array

View all Backend Developer interview questions
A Software Quality Assurance Engineer was asked 9mo ago
Q. Write a function that reverses a string.
Ans. 

Reverse a string

  • Create a new empty string to store the reversed string

  • Iterate through the original string from end to start and append each character to the new string

  • Return the reversed string

View all Software Quality Assurance Engineer interview questions
A Front end Developer was asked 9mo ago
Q. Implement a timer in React.
Ans. 

To implement a timer in React, you can use the useState hook to manage the timer state and useEffect hook to update the timer.

  • Use useState hook to initialize timer state

  • Use useEffect hook to update timer every second

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

View all Front end Developer interview questions

Antino Interview Experiences

29 interviews found

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

(2 Questions)

  • Q1. What are Django signals, and what is their application in web development?
  • Ans. 

    Django signals are a way for decoupled applications to get notified when certain actions occur elsewhere in the application.

    • Django signals allow certain senders to notify a set of receivers when some action has taken place.

    • They are used for decoupling various components of a web application.

    • Signals are useful for executing code based on certain events, such as user login, object creation, etc.

    • Example: Sending an email ...

  • Answered by AI
  • Q2. What are Django generic views?
  • Ans. 

    Django generic views are pre-built views provided by Django to simplify common tasks like displaying data from a database.

    • Django generic views help reduce code duplication by providing ready-to-use views for common tasks like displaying objects from a database.

    • They are generic in nature and can be easily customized to suit specific requirements.

    • Examples include ListView for displaying a list of objects, DetailView for ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are conducting three rounds of interviews, with coding required in each round, and tasks are assigned during the interview.

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is node.js?
  • Ans. 

    Node.js is a JavaScript runtime built on Chrome's V8 engine, enabling server-side scripting and asynchronous event-driven architecture.

    • Built on Chrome's V8 JavaScript engine for high performance.

    • Uses an event-driven, non-blocking I/O model for scalability.

    • Ideal for building real-time applications like chat apps (e.g., Socket.io).

    • Supports npm (Node Package Manager) for easy package management.

    • Allows developers to use Ja...

  • Answered by AI
  • Q2. Architecture of Node?
  • Ans. 

    Node.js uses an event-driven, non-blocking I/O model, making it efficient and suitable for scalable network applications.

    • Single-threaded event loop: Handles multiple connections concurrently without creating new threads.

    • Non-blocking I/O: Allows operations like reading files or querying databases without freezing the application.

    • JavaScript runtime: Built on Chrome's V8 engine, enabling fast execution of JavaScript code.

    • ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Promises and Async Nature of JS
  • Q2. Some JS coding Questions

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain event loop nodejs.
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callbacks when certain events occur.

    • Event loop is a single-threaded mechanism that allows Node.js to perform non-blocking I/O operations.

    • It continuously checks the call stack for any functions that need to be executed, as well as the callback queue for any functions that are ready to be executed.

    • Event loop prioritizes the execution of I/O operations and...

  • Answered by AI
  • Q2. Write the code for quick sort
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer approach.

    • Divide the array into two sub-arrays based on a pivot element

    • Recursively sort the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was rescheduled multiple times.
From company insider - They will do anything to please the client. Unrealistic deadlines leading to long working hours. Employee retention rate is not good.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Two simple coding with technical questions
Round 2 - Technical 

(1 Question)

  • Q1. One simple coding and technical questions along with system design questions
Round 3 - Technical 

(1 Question)

  • Q1. Work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Please dont attend interview they wouldn't select you. Instead they will waste your time. And the HR chitranshi is too bad
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Closure,html,css,react
  • Q2. Implment timer in react
  • Ans. 

    To implement a timer in React, you can use the useState hook to manage the timer state and useEffect hook to update the timer.

    • Use useState hook to initialize timer state

    • Use useEffect hook to update timer every second

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

  • Answered by AI
Round 2 - Coding Test 

Coding test for react and also asked to show my project

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well

Skills evaluated in this interview

Interview experience
5
Excellent
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. Basic Question like years of experience in relevant field
  • Q2. What is current ctc and how much you are expecting
  • Ans. 

    I am currently earning X amount and looking for a competitive salary based on my experience and skills.

    • My current CTC is X amount per annum

    • I am looking for a competitive salary based on market standards and my experience

    • I am open to negotiation based on the job role and responsibilities

  • Answered by AI
Round 2 - Coding Test 

First technical round consists Nodejs, expressjs , javascript basic questions only

Interview Preparation Tips

Topics to prepare for Antino Node JS Developer interview:
  • Promises, callbacks, image uploa
Interview preparation tips for other job seekers - Please go through the basics because In second I realise that they are more focusing on basics of javascritp. They also asked 2 question from dsa but that was of very easy level,both are from arrays .
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. Remove duplicate from array
  • Ans. 

    Removing duplicates from an array of strings can be achieved using various methods in JavaScript, ensuring unique values.

    • Using Set: The simplest way to remove duplicates is by converting the array to a Set and back to an array. Example: `const uniqueArray = [...new Set(array)];`

    • Using Filter: You can filter the array by checking the index of each element. Example: `const uniqueArray = array.filter((item, index) => ar...

  • Answered by AI
  • Q2. Promise , project explanation, stripe , jwt
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a dedicated Software Quality Assurance Engineer with 5 years of experience in testing web and mobile applications.

    • Experienced in creating test plans, test cases, and executing tests

    • Proficient in using testing tools such as Selenium and Jira

    • Strong knowledge of software development lifecycle and Agile methodologies

  • Answered by AI
  • Q2. About your past experience
Round 2 - Technical 

(1 Question)

  • Q1. Reverse a string
  • Ans. 

    Reverse a string

    • Create a new empty string to store the reversed string

    • Iterate through the original string from end to start and append each character to the new string

    • Return the reversed string

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic Aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions with CV
  • Q2. Situational questions, project management process, agile methodologies
Round 3 - Technical 

(1 Question)

  • Q1. More brainstorming with cv
Round 4 - HR 

(1 Question)

  • Q1. Basic HR questions

Interview Questions & Answers

user image Anonymous

posted on 17 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. 1.First asking about project and project related question.Then asking some question from html,css .like center div ,flex,grid,semantic element,ARIA.
  • Q2. 2.JavaScript question related to event loop ,promise ,hoisting ,shadowing ,setTimeout ,clouser question. 3.React coding related to fetch api and show the details
Round 2 - Technical 

(1 Question)

  • Q1. Related to DSA coding,some question javaScript ,react
Round 3 - HR 

(1 Question)

  • Q1. Details about previous work exp,salary ,why join,etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basic js and react

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Antino?
Ask anonymously on communities.

Antino Interview FAQs

How many rounds are there in Antino interview?
Antino interview process usually has 2-3 rounds. The most common rounds in the Antino interview process are Technical, Coding Test and HR.
How to prepare for Antino 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 Antino. The most common topics and skills that interviewers at Antino expect are Javascript, SQL, MySQL, MongoDB and Java.
What are the top questions asked in Antino interview?

Some of the top questions asked at the Antino interview -

  1. Can we send data from the get request to the serv...read more
  2. What are Django signals, and what is their application in web developme...read more
  3. What are the basic concepts of JavaScript, including the event lo...read more
How long is the Antino interview process?

The duration of Antino interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 34 interview experiences

Difficulty level

Easy 29%
Moderate 57%
Hard 14%

Duration

Less than 2 weeks 90%
2-4 weeks 5%
4-6 weeks 5%
View more

Interview Questions from Similar Companies

Apisero Interview Questions
4.3
 • 66 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.7
 • 41 Interviews
Damco Solutions Interview Questions
3.8
 • 41 Interviews
Simform Interview Questions
3.4
 • 38 Interviews
Stefanini Interview Questions
3.0
 • 36 Interviews
View all

Antino Reviews and Ratings

based on 151 reviews

2.8/5

Rating in categories

3.0

Skill development

2.6

Work-life balance

2.8

Salary

2.5

Job security

2.7

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 151 Reviews and Ratings
Python Developer

Gurgaon / Gurugram

1-6 Yrs

Not Disclosed

Technical PM / BA

Gurgaon / Gurugram

2-4 Yrs

Not Disclosed

PM- Technical / BA

Gurgaon / Gurugram

2-4 Yrs

Not Disclosed

Explore more jobs
Software Developer
100 salaries
unlock blur

₹4.8 L/yr - ₹10.1 L/yr

Associate Software Developer
55 salaries
unlock blur

₹3.5 L/yr - ₹7.3 L/yr

Software Engineer
32 salaries
unlock blur

₹5 L/yr - ₹10.5 L/yr

Front end Developer
30 salaries
unlock blur

₹4 L/yr - ₹7.8 L/yr

Associate Software Engineer
20 salaries
unlock blur

₹4 L/yr - ₹7.8 L/yr

Explore more salaries
Compare Antino with

Tekwissen

4.8
Compare

Damco Solutions

3.8
Compare

smartData Enterprises

3.3
Compare

In Time Tec Visionsoft

3.7
Compare
write
Share an Interview