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 DOT NET Developer Interview Questions and Answers

Updated 17 Apr 2024

Antino DOT NET Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Quite good and challeging questions asked
Round 2 - Technical 

(1 Question)

  • Q1. Manager round, quite good.all the coding part was there

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - HR 

(1 Question)

  • Q1. Poor question Why you want to change your job
Round 2 - Technical 

(5 Questions)

  • Q1. What is encapsulation?
  • Q2. What is polymorphism and types?
  • Q3. What CTE?
  • Q4. Version of Angular
  • Q5. How to make store procedure in sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Poor process from them.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Api to update employees details
  • Ans. 

    Create an API endpoint to update employee details.

    • Use PUT method to update employee details

    • Validate input data before updating

    • Return success message or error message accordingly

  • Answered by AI

I applied via Indeed and was interviewed in Feb 2022. There were 5 interview rounds.

Round 1 - Communication Round 

(3 Questions)

  • Q1. Tell me one of your challenge you face in your B.tech?
  • Q2. Can you tell us about your Family?
  • Q3. How is your Friend circle?
Round 2 - Aptitude Test 

Aptitude round was of 30-60 minutes(i forgot the duration of this round) of 40-45 Questions. All of the Questions are of good Level if you practiced lil bit you can clear the round easily.

Round 3 - Coding Test 

Coding round is type of MCQ based if we have good knowledge of topics we can clear this round and guess the output type questions are also there in this round.

Round 4 - Technical 

(3 Questions)

  • Q1. Tell us about yourself?
  • Q2. Then they will ask you questions related to your skill , for me they asked me questions related to java and OOPs concepts, constructor, Access Modifers
  • Q3. After checking my java knowledge they start asking the questions regarding my Project
Round 5 - HR 

(2 Questions)

  • Q1. Hr was soo nice and she informed that i cleared all rounds and asked me questions like will you able to relocate when office will open
  • Q2. She asked me about my salary expectation

Interview Preparation Tips

Topics to prepare for Damco Solutions DOT NET Developer interview:
  • DSA
  • OOPS
  • Project
  • Communication Skills
  • Java
Interview preparation tips for other job seekers - during interview don't be nervous whether you will be selected or not just they wont kill you . Some students have knowledge but they get nervous a lot , so don't be nervous and give interview with confidence and before giving bigger company just give interviews in smaller companies so there will be higher chances they questions will repeat
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Solid Principle, Design Patterns,
  • Q2. React sharing data btw siblings without any state management.
  • Q3. NodeJs is single threaded then why it feels concurrent?
Round 2 - Technical 

(3 Questions)

  • Q1. Questions related micro services
  • Q2. Message queue related questions
  • Q3. NodeJs related questions: Event loop

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare NodeJs in-depth.
Mention things in your resume that you actually know and worked on. They will ask questions from your experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude,reasoning,verbal,C language,Java,C++

Round 2 - Technical 

(2 Questions)

  • Q1. What is interface in JAVA
  • Q2. Explain OOPS in JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Project based backend and frontend
  • Q2. How to connect to backend
  • Ans. 

    To connect to the backend, you can use APIs, database connections, or web services.

    • Use APIs to send and receive data between the frontend and backend

    • Establish database connections to retrieve and store data

    • Utilize web services for communication between different systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for project

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is class what is object what is different between private protected and public and default
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class. Private, protected, public, and default are access modifiers in object-oriented programming.

    • A class is a template or blueprint that defines the properties and behaviors of objects.

    • An object is an instance of a class, created using the class blueprint.

    • Private access modifier restricts access to class members within the same class.

    • Pro...

  • Answered by AI
  • Q2. What is object ?
  • Ans. 

    An object is a self-contained entity that consists of both data and behavior.

    • Objects are instances of classes in object-oriented programming.

    • They encapsulate data and provide methods to manipulate that data.

    • Objects can interact with each other through method calls and message passing.

    • Examples of objects include a car, a person, or a bank account.

  • Answered by AI
  • Q3. What is public?
  • Ans. 

    Public is a keyword in programming languages that denotes the accessibility of a class, method, or variable.

    • Public is one of the access modifiers in object-oriented programming.

    • It allows the class, method, or variable to be accessed from any other class or package.

    • Public members are part of the public API of a software component.

    • Example: public class MyClass { ... }

    • Example: public void myMethod() { ... }

    • Example: public

  • Answered by AI
  • Q4. What is private?
  • Ans. 

    In programming, private is an access modifier that restricts the visibility of a class member to within its own class.

    • Private is used to encapsulate data and prevent direct access from outside the class.

    • Private members can only be accessed through public methods or properties.

    • Private variables are often used to store internal state or implementation details.

    • Private methods are used for internal logic and are not meant

  • Answered by AI
  • Q5. What is protected
  • Ans. 

    protected is an access modifier in object-oriented programming that restricts access to members within the same package or subclasses.

    • protected is one of the four access modifiers in Java, along with public, private, and default.

    • Members declared as protected can be accessed within the same package or by subclasses.

    • Protected members are not accessible outside the package unless accessed through inheritance.

    • Example: prot...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cyber Infrastructure Software Developer interview:
  • OOPS
  • Java
Interview preparation tips for other job seekers - Know what you have written in your resume

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Level of aptitude is easy

Round 2 - Coding Test 

In this selected role question is asked suppose I applied in .net then coding must in c#

Antino Interview FAQs

How many rounds are there in Antino DOT NET Developer interview?
Antino interview process usually has 2 rounds. The most common rounds in the Antino interview process are Technical.
How to prepare for Antino DOT NET Developer 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 C#, ASP.Net, MVC, .Net and SQL.
What are the top questions asked in Antino DOT NET Developer interview?

Some of the top questions asked at the Antino DOT NET Developer interview -

  1. Manager round, quite good.all the coding part was th...read more
  2. Quite good and challeging questions as...read more

Tell us how to improve this page.

Antino DOT NET Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Software Developer
79 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Associate Software Developer
48 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Front end Developer
30 salaries
unlock blur

₹3 L/yr - ₹7.6 L/yr

Backend Developer
29 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Software Engineer
26 salaries
unlock blur

₹5 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Antino with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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