Upload Button Icon Add office photos

Filter interviews by

Amada Global Senior Engineer Interview Questions and Answers

Updated 13 Mar 2024

Amada Global Senior Engineer Interview Experiences

1 interview found

Senior Engineer Interview Questions & Answers

user image Karthik Ramesh

posted on 13 Mar 2024

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

I applied via Approached by Company and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. Why did you choose Amada?
  • Ans. Because of nature of work and organized struture.
  • Answered by Karthik Ramesh
  • Q2. Introduce yourself
  • Q3. How good your with laser cutting
  • Ans. 

    I have extensive experience with laser cutting and have successfully completed multiple projects using this technology.

    • I have worked with various types of laser cutting machines, including CO2 and fiber lasers.

    • I am proficient in programming laser cutting machines to achieve precise cuts and intricate designs.

    • I have experience working with a variety of materials, such as metal, wood, and acrylic, using laser cutting tec...

  • Answered by AI
  • Q4. How can you sell the machine with high cost
  • Ans. 

    Highlight the unique features and benefits of the machine to justify the high cost.

    • Emphasize the advanced technology and capabilities of the machine.

    • Highlight the long-term cost savings and efficiency improvements the machine can provide.

    • Demonstrate the high quality and reliability of the machine compared to lower-cost alternatives.

    • Offer personalized customer support and training to justify the higher price.

    • Provide cas...

  • Answered by AI
  • Q5. How can you manage the chennai market
  • Ans. 

    I can manage the Chennai market by understanding the local culture, building strong relationships with key stakeholders, and implementing targeted marketing strategies.

    • Understand the local culture and consumer preferences in Chennai

    • Build strong relationships with key stakeholders such as suppliers, distributors, and retailers

    • Implement targeted marketing strategies to reach the Chennai market effectively

    • Stay updated on ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amada Global Senior Engineer interview:
  • Laser Cutting
  • Management
  • Sales
Interview preparation tips for other job seekers - Be bold and confident

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Pradeep and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Only pradeep and sarath told 

(2 Questions)

  • Q1. Why you are accepting refrence people got a job this organisation....they are no skilled....nikhila is a skilled employee but she's replaced person Surya is very low power skill...bcz of sarath Chandra rou...
  • Q2. Prakash Kumar sahoo is very skilled person but why pradeep reference her old colleague Karthik and jeeva ,,,,then etc people from Wipro company....bcz pradeep thinking is (already I left from this golden e...

Interview Preparation Tips

Topics to prepare for SMC Corporation Senior Engineer interview:
  • Reference from Sarath and pradee
Interview preparation tips for other job seekers - Please if you come to work together with SMC corporation India private limited .. please asking to sarath Chandra rout and pradeep
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Web api , sql, basics
  • Q2. Design pattern, Solid principles,
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I was interviewed in Sep 2023.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Reverse a String using Array
  • Ans. 

    Reverse a string using array of characters

    • Create an array of characters from the input string

    • Use two pointers to swap characters at opposite ends of the array until they meet

    • Join the characters in the array to form the reversed string

  • Answered by AI
  • Q2. Microservices vs Monilith
  • Ans. 

    Microservices allow for modular, independent services while monolith is a single, cohesive unit.

    • Microservices promote scalability and flexibility

    • Monoliths are easier to develop and deploy initially

    • Microservices can lead to more complex infrastructure and communication between services

    • Monoliths can become difficult to maintain and scale as they grow

    • Examples: Netflix uses microservices for their streaming platform, while...

  • Answered by AI
  • Q3. SQL query to get 3 max salary by group
  • Ans. 

    SQL query to get 3 max salary by group

    • Use the RANK() function to rank the salaries within each group

    • Filter the results to only include rows where the rank is less than or equal to 3

    • Order the results by group and salary in descending order

  • Answered by AI
  • Q4. CI CD process followed in last project
  • Ans. 

    Implemented CI/CD process using Jenkins for automated builds, tests, and deployments.

    • Utilized Jenkins for continuous integration and continuous deployment

    • Automated build process triggered by code commits to version control

    • Implemented automated testing to ensure code quality

    • Deployed code to different environments based on predefined pipelines

  • Answered by AI
  • Q5. Major changes in Spring boot 3
  • Ans. 

    Major changes in Spring Boot 3 include support for Java 17, improved performance, and enhanced security features.

    • Support for Java 17

    • Improved performance optimizations

    • Enhanced security features such as OAuth 2.1 support

    • Updated dependencies and libraries

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Hierarchy of knowledge objects in splunk
  • Ans. 

    Splunk has a hierarchy of knowledge objects to organize and manage data.

    • The hierarchy includes apps, add-ons, and configurations.

    • Apps contain dashboards, reports, and alerts.

    • Add-ons provide additional functionality to apps.

    • Configurations include indexes, sourcetypes, and fields.

    • Knowledge objects can be shared across the hierarchy.

    • Higher level objects inherit settings from lower level objects.

  • Answered by AI
  • Q2. How to configure a cluster
  • Ans. 

    Configuring a cluster involves setting up multiple servers to work together as a single system.

    • Choose a cluster management tool such as Kubernetes or Apache Mesos

    • Determine the number of nodes and their roles in the cluster

    • Configure network settings and communication protocols

    • Set up load balancing and failover mechanisms

    • Ensure data consistency and replication across nodes

  • Answered by AI
  • Q3. How to configure rsyslog
  • Ans. 

    Rsyslog is configured by editing its configuration file, usually located at /etc/rsyslog.conf

    • Identify the log sources and their corresponding log files

    • Specify the log destination and format

    • Configure filters and rules to process and route logs

    • Restart the rsyslog service to apply changes

    • Use tools like logger and tail to test the configuration

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One should be confident and be clear with the concepts

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Write a program: if input is "my_first_variable" return output as "myFirstVariable" and vice-versa
  • Ans. 

    A program to convert a variable name from snake_case to camelCase and vice-versa.

    • Split the input string by underscore (_) to get an array of words.

    • For snake_case to camelCase conversion, capitalize the first letter of each word except the first one.

    • For camelCase to snake_case conversion, insert an underscore (_) before each capital letter except the first one.

    • Join the array of words with the appropriate delimiter to ge

  • Answered by AI
  • Q2. Write a program: two input, one is N(any integer, lets say 3), second input will be array of integers(duplicate/multiple occurrences of same integer, lets say [2,3,2,4,2] ). You have to return the number w...
  • Ans. 

    Program to find the number whose occurrence is greater than N/2 in an array of integers.

    • Take two inputs, one integer N and an array of integers.

    • Loop through the array and count the occurrence of each number.

    • Return the number whose occurrence is greater than N/2.

    • If no such number found, return '-1'.

  • Answered by AI
  • Q3. Write a program: single input as a string(lets say "aaabcccfffghh"), you have to return the char and their occurrence as a string. In this case you have to return "a3b1c3f3g1h2"
  • Ans. 

    Program to return character and their occurrence in a string.

    • Iterate through the string and count the occurrence of each character.

    • Store the count in a dictionary or hashmap.

    • Create a new string by concatenating the character and their count.

    • Return the new string.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Ui Developer(React/Redux). For that I had to go through series of tests and tech interview.
1. Coding Challenge: Three questions in 75min. Difficulty Level - Average
2.Aptitude Test: 30 questions in 20min. Difficulty Level - Average. Questions related to find the sequence of any missing figure. Train speed related questions. So practice these
3. Two round of Tech interview. Difficulty Level - Average to Difficult
4. MCQ on JS, JS Fundamental, HTML, CSS, React, GIT. Time 190min. Difficulty Level - Difficult.

Nagarro's hiring process is damn fast. After clearing any of the steps they will call on same day.

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. What you did to learn new technology?
  • Ans. 

    I keep myself updated by attending conferences, reading blogs, and taking online courses.

    • Attend conferences and workshops to learn from experts

    • Read blogs and articles to stay updated on latest trends

    • Take online courses and tutorials to gain practical knowledge

    • Experiment with new technology by building projects

    • Collaborate with peers to learn from their experiences

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on resume and understand what you have written in it. Also do not try to over elaborate answers. Keep is short and crisp.

I applied via Company Website and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Hierarchy of knowledge objects in splunk
  • Ans. 

    Splunk has a hierarchy of knowledge objects that includes apps, add-ons, and configurations.

    • The highest level is the app, which contains all other knowledge objects.

    • Add-ons are installed within apps and provide additional functionality.

    • Configurations are specific to an app or add-on and include saved searches, alerts, and dashboards.

  • Answered by AI
  • Q2. How to configure a cluster
  • Ans. 

    Configuring a cluster involves setting up multiple servers to work together as a single system.

    • Choose a cluster management software such as Kubernetes or Apache Mesos

    • Select the appropriate hardware and network infrastructure

    • Install and configure the cluster management software on each server

    • Define the roles and responsibilities of each server in the cluster

    • Test the cluster to ensure it is functioning properly

  • Answered by AI
  • Q3. How to configure rsyslog
  • Ans. 

    Rsyslog is configured by editing its configuration file, usually located at /etc/rsyslog.conf

    • Edit the configuration file using a text editor

    • Specify the log files to be monitored and the actions to be taken for each log message

    • Configure filters to select specific log messages based on criteria such as severity or facility

    • Specify the destination for the log messages, such as a file, remote server, or database

    • Restart the

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One should be confident and be clear with the concepts

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • Hashing function is used to convert the key into an index of an array where the value is stored

    • Collisions occur when two keys have the same hash value, which is resolved using separate chaining or open addressing

    • HashMap allows null values and one null key

    • The load factor determines when the HashMap should resize to mainta...

  • Answered by AI
  • Q2. Cutom immuatable class
  • Q3. Multithreading
  • Q4. How microservices communicate
  • Ans. 

    Microservices communicate through APIs and messaging protocols.

    • APIs allow microservices to expose their functionality to other services or applications.

    • Messaging protocols enable asynchronous communication between microservices.

    • Common messaging protocols include Kafka, RabbitMQ, and ActiveMQ.

    • Microservices can also use service meshes like Istio to manage communication and traffic between services.

    • Communication can be sy...

  • Answered by AI
  • Q5. Some questions related to devops

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Comparator

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Amada Global Interview FAQs

How many rounds are there in Amada Global Senior Engineer interview?
Amada Global interview process usually has 1 rounds. The most common rounds in the Amada Global interview process are HR.
What are the top questions asked in Amada Global Senior Engineer interview?

Some of the top questions asked at the Amada Global Senior Engineer interview -

  1. How can you sell the machine with high c...read more
  2. How good your with laser cutt...read more
  3. How can you manage the chennai mar...read more

Tell us how to improve this page.

Amada Global Senior Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Fast track your campus placements

View all
Amada Global Senior Engineer Salary
based on 14 salaries
₹7 L/yr - ₹13 L/yr
At par with the average Senior Engineer Salary in India
View more details

Amada Global Senior Engineer Reviews and Ratings

based on 7 reviews

2.3/5

Rating in categories

1.6

Skill development

3.0

Work-life balance

2.2

Salary

3.7

Job security

2.2

Company culture

1.8

Promotions

2.2

Work satisfaction

Explore 7 Reviews and Ratings
Service Engineer
45 salaries
unlock blur

₹3.6 L/yr - ₹9.1 L/yr

Senior Engineer
14 salaries
unlock blur

₹7 L/yr - ₹13 L/yr

Applications Engineer
14 salaries
unlock blur

₹4 L/yr - ₹9.2 L/yr

Senior Service Engineer
13 salaries
unlock blur

₹6.7 L/yr - ₹16 L/yr

Assistant Manager
10 salaries
unlock blur

₹7.2 L/yr - ₹12.1 L/yr

Explore more salaries
Compare Amada Global with

Bosch

4.2
Compare

Siemens

4.1
Compare

ABB

4.1
Compare

Schneider Electric

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