Upload Button Icon Add office photos

Filter interviews by

Indo Autotech Software Developer Interview Questions and Answers

Updated 28 Jun 2024

Indo Autotech Software Developer Interview Experiences

2 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

Basic coding about software

Round 2 - HR 

(2 Questions)

  • Q1. About your self
  • Q2. Fast growing programing language
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 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Was good that I was able to crack the internship.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular related questions
  • Q2. Springboot question
Round 2 - One-on-one 

(1 Question)

  • Q1. General skill based managerial questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
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 Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test with multiple questions around DSA

Round 2 - One-on-one 

(2 Questions)

  • Q1. Dot net questions
  • Q2. Oops questions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Gudlavalleru Engineering College, Gudlavalleru and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The first round was aptitude test consists of negative marking

Round 2 - Coding Test 

Test was conducted for students who got 70 or more

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(5 Questions)

  • Q1. Spring boot and micro services are most questions.
  • Q2. Db questions regarding joins and group by
  • Q3. Spring profile related questions
  • Q4. Spring boot actuator related questions
  • Q5. Spring boot advantage related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

I applied via Instahyre and was interviewed in Feb 2022. There were 9 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 
Round 3 - Coding Test 
Round 4 - Coding Test 
Round 5 - Coding Test 
Round 6 - Aptitude Test 

Aptitude ralated questions

Round 7 - Group Discussion 

To take one topic and explain

Round 8 - Technical 

(1 Question)

  • Q1. Taken by technical round
Round 9 - HR 

(9 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.
  • Q9. Why are you interested this job

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparing for a job interview can be pretty intimidating. Especially when it’s being done for the first time or if it’s been a long time since the last one. There is no easy way when it comes to facing an interviewer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Mar 2023.

Round 1 - Coding Test 

Coding test, on C, around 1 hr, on teams

Round 2 - Technical 

(1 Question)

  • Q1. C basics Embedded C Aptitude
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2020. There was 1 interview round.

Round 1 - Aptitude Test 

Assignments with Reasoning and maths etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - More related to the project I did and database query and the info we provide in resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(6 Questions)

  • Q1. What are generics in c#
  • Ans. 

    Generics in C# allow for type-safe programming by enabling the creation of reusable code.

    • Generics allow for the creation of classes, interfaces, and methods that can work with any data type.

    • They provide type safety by allowing the compiler to enforce type constraints.

    • Examples include List, Dictionary, and Nullable.

    • Generics can improve performance by reducing the need for boxing and unboxing operations.

Answered by AI
  • Q2. What are delegates and why we need it. Which are built in delegates in c#
  • Ans. 

    Delegates are reference types that hold a reference to a method. They are used to achieve loose coupling and event handling.

    • Delegates allow methods to be passed as parameters to other methods.

    • They can be used to define callback methods.

    • Built-in delegates in C# include Action, Func, Predicate, EventHandler, and Comparison.

    • Action and Func are used for methods that return void and non-void values respectively.

    • Predicate is...

  • Answered by AI
  • Q3. What is difference between Dictionary and Hashtable
  • Ans. 

    Dictionary is a generic collection while Hashtable is a non-generic collection.

    • Dictionary is type-safe while Hashtable is not.

    • Dictionary allows null keys and values while Hashtable does not.

    • Dictionary is faster than Hashtable for small collections.

    • Hashtable is thread-safe while Dictionary is not.

  • Answered by AI
  • Q4. Difference between stored procedure and functions
  • Ans. 

    Stored procedures are used to perform a set of actions, while functions return a single value.

    • Stored procedures can modify data in the database, while functions cannot.

    • Functions can be used in SQL statements, while stored procedures cannot.

    • Stored procedures can have input and output parameters, while functions can only have input parameters.

    • Functions can be called from within stored procedures, but stored procedures ca

  • Answered by AI
  • Q5. Write a program to find the number of occurrences in a given string
  • Ans. 

    Program to find the number of occurrences in a given string

    • Use a loop to iterate through the string and count the occurrences of each character

    • Store the count in a dictionary or hash table

    • Return the dictionary or hash table

  • Answered by AI
  • Q6. What are restful services and WebApi and difference between them
  • Ans. 

    RESTful services are web services that follow the REST architecture while WebAPI is a framework for building RESTful services.

    • RESTful services use HTTP methods like GET, POST, PUT, DELETE to perform CRUD operations on resources

    • WebAPI is a framework for building RESTful services using .NET framework

    • WebAPI provides features like routing, model binding, content negotiation, etc.

    • RESTful services can be consumed by any clie...

  • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Wabtec Senior Software Engineer interview:
    • Linq
    • Entity Framework
    • Generics
    • Delegates
    • Async
    • Await
    • SQL Server
    Interview preparation tips for other job seekers - Be prepared with your resume. Explain your current roles and responsibilities.

    Skills evaluated in this interview

    Indo Autotech Interview FAQs

    How many rounds are there in Indo Autotech Software Developer interview?
    Indo Autotech interview process usually has 2 rounds. The most common rounds in the Indo Autotech interview process are HR, Resume Shortlist and Coding Test.

    Tell us how to improve this page.

    Indo Autotech Software Developer Interview Process

    based on 1 interview

    Interview experience

    2
      
    Poor
    View more

    Indo Autotech Software Developer Reviews and Ratings

    based on 1 review

    5.0/5

    Rating in categories

    5.0

    Skill development

    5.0

    Work-life balance

    5.0

    Salary

    5.0

    Job security

    5.0

    Company culture

    5.0

    Promotions

    5.0

    Work satisfaction

    Explore 1 Review and Rating
    Senior Engineer
    218 salaries
    unlock blur

    ₹3.2 L/yr - ₹7.5 L/yr

    Engineer
    172 salaries
    unlock blur

    ₹2.1 L/yr - ₹5.5 L/yr

    Assistant Manager
    160 salaries
    unlock blur

    ₹4.4 L/yr - ₹10.1 L/yr

    Production Engineer
    128 salaries
    unlock blur

    ₹2 L/yr - ₹5.4 L/yr

    Quality Engineer
    106 salaries
    unlock blur

    ₹1.8 L/yr - ₹5 L/yr

    Explore more salaries
    Compare Indo Autotech with

    Tata Motors

    4.2
    Compare

    Mahindra & Mahindra

    4.1
    Compare

    Maruti Suzuki

    4.2
    Compare

    Bharat Forge

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