Upload Button Icon Add office photos

Filter interviews by

Amada Global Software Developer Interview Questions and Answers

Updated 1 Apr 2024

Amada Global Software Developer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Maths with special focus on 3D geometry

Round 2 - Technical 

(1 Question)

  • Q1. A Question on linked lists
Round 3 - HR 

(1 Question)

  • Q1. About the company and your motivation to join

Interview questions from similar companies

Software Developer Interview Questions & Answers

Optum user image Preeti Charishma

posted on 26 Nov 2024

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

Aptitude, core concepts and a code

Round 2 - HR 

(2 Questions)

  • Q1. What is the one thing you learnt from college club?
  • Ans. 

    I learned the importance of teamwork and collaboration from my college club.

    • Developed strong communication skills by working with diverse group of individuals

    • Learned how to delegate tasks effectively to achieve common goals

    • Gained experience in problem-solving and conflict resolution through group projects

  • Answered by AI
  • Q2. What is the one thing you want to expereince?
  • Ans. 

    I want to experience living in a different country and immersing myself in a new culture.

    • Traveling to a foreign country and learning about their customs and traditions

    • Trying new foods and experiencing different ways of life

    • Making friends with locals and exploring the local attractions

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Difference between relational and non relational dbms
  • Ans. 

    Relational DBMS stores data in tables with predefined relationships, while non-relational DBMS stores data in flexible, schema-less formats.

    • Relational DBMS uses structured query language (SQL) for querying data

    • Non-relational DBMS can store data in various formats like key-value pairs, document-based, graph databases

    • Relational DBMS ensures data integrity through normalization and constraints

    • Non-relational DBMS offers be...

  • Answered by AI
  • Q2. Difference betweeen class,abstract class,interface in python
  • Ans. 

    Class is a blueprint for creating objects, abstract class cannot be instantiated and can have abstract methods, interface is a contract for classes to implement certain methods.

    • Class is a blueprint for creating objects with attributes and methods.

    • Abstract class cannot be instantiated and can have abstract methods that must be implemented by subclasses.

    • Interface is a contract for classes to implement certain methods, bu

  • Answered by AI
  • Q3. Project related questions were asked

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Basic core java, reasoning,english

Round 2 - Coding Test 

Dsa question of arrays

Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Stacks and queues
  • Q3. Time complexity

Interview Preparation Tips

Topics to prepare for Nagarro Software Developer interview:
  • java
  • dsa
  • arrays
  • stacks
  • queue
  • dbms
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of angular, ts,js
Round 2 - One-on-one 

(1 Question)

  • Q1. Programming questions
Round 3 - HR 

(1 Question)

  • Q1. Family backgroud
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java and Data Strcuture

Round 2 - Technical 

(2 Questions)

  • Q1. Matrix to find the nearest word
  • Ans. 

    Find the nearest word in a matrix of strings

    • Create a matrix of strings

    • Calculate the distance between the input word and each word in the matrix

    • Return the word in the matrix with the smallest distance to the input word

  • Answered by AI
  • Q2. Finding smallest subset in string
  • Ans. 

    Find the smallest subset of strings in an array

    • Iterate through the array and compare the length of each string to find the smallest subset

    • Use a variable to keep track of the smallest subset found so far

    • Return the smallest subset at the end

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DS and Java

Skills evaluated in this interview

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

Online test which consists of java, angular, micro services related questions

Round 2 - Technical 

(1 Question)

  • Q1. Difference between static and default methods
  • Ans. 

    Static methods belong to the class itself, while default methods are part of an interface in Java.

    • Static methods can be called without creating an instance of the class, while default methods are used to provide a default implementation in interfaces.

    • Static methods are defined using the 'static' keyword, while default methods are defined using the 'default' keyword in Java.

    • Static methods cannot be overridden in subclas...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 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 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basics of Opps virtual functions , destructor
  • Q2. Basics of MFC and its structure
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Performace optimization, caching, redis
  • Q2. Immutable class, single ton pattern
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - Coding Test 

Array, logistics ,ml,

Round 2 - Technical 

(1 Question)

  • Q1. How to add list
  • Ans. 

    To add a list in programming, you can use arrays or lists depending on the language.

    • In Python, you can add elements to a list using the append() method.

    • In Java, you can add elements to an ArrayList using the add() method.

    • In JavaScript, you can add elements to an array using the push() method.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why u need to join this
  • Ans. 

    I am passionate about software development and believe this company offers exciting opportunities for growth and innovation.

    • Exciting projects and challenges at this company

    • Opportunities for growth and learning

    • Innovative work environment

    • Passionate about software development

  • Answered by AI

Skills evaluated in this interview

Amada Global Interview FAQs

How many rounds are there in Amada Global Software Developer interview?
Amada Global interview process usually has 3 rounds. The most common rounds in the Amada Global interview process are Aptitude Test, Technical and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Amada Global interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Fast track your campus placements

View all
Service Engineer
43 salaries
unlock blur

₹3.6 L/yr - ₹9.5 L/yr

Senior Engineer
15 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Applications Engineer
14 salaries
unlock blur

₹4 L/yr - ₹9.2 L/yr

Senior Service Engineer
11 salaries
unlock blur

₹6.7 L/yr - ₹12 L/yr

Assistant Manager
8 salaries
unlock blur

₹7.2 L/yr - ₹12 L/yr

Explore more salaries
Compare Amada Global with

Bosch

4.2
Compare

Siemens

4.1
Compare

ABB

4.1
Compare

Schneider Electric

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview