Premium Employer

i

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

ATMECS Global Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ATMECS Global Senior Software Engineer Interview Questions and Answers

Updated 8 Mar 2024

ATMECS Global Senior Software Engineer Interview Experiences

3 interviews found

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Reverse string without inbuilt functions in python.
  • Ans. 

    Reverse a string without inbuilt functions in Python.

    • Create an empty string to store the reversed string.

    • Iterate through the original string in reverse order.

    • Append each character to the empty string.

    • Return the reversed string.

    • Alternatively, use slicing to reverse the string: string[::-1].

  • Answered by AI
  • Q2. Couple of testing related questions and robot framework questions. Api questions and basic data base and selenium questions.
  • Q3. Find out duplicates in list and prepare dictionary with count of characters in given string?
  • Ans. 

    Find duplicates in list and create dictionary with character count in string.

    • Iterate through the list and use a dictionary to keep track of character count.

    • For each string in the list, iterate through the characters and add them to the dictionary.

    • If the character already exists in the dictionary, increment its count.

    • If the character does not exist in the dictionary, add it with a count of 1.

    • Finally, iterate through the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't worry about interview they just hire if you are immediate joiner.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I was interviewed before Mar 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular Questions
  • Q2. Angular topics directives, forms, interceptors
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial Round , Discussion on Projects i worked

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more

I applied via LinkedIn and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Open Amazon shopping and search for the mobiles. Write an automation script to click on the element of the low cost without applying any filters.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and clear of the things what you know. An attitude of willing to learn and explaining the technologies we really know will help to pass an interview for sure.

All the very best.

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. CSS: Create a triangle using only CSS
  • Ans. 

    Use CSS to create a triangle shape

    • Use border properties to create a triangle shape

    • Set the width and height of the element to 0

    • Use borders of different colors to create the triangle shape

  • Answered by AI
  • Q2. HTML: Change the CSS of a parent element by accessing only it's child element
  • Ans. 

    Use CSS selectors to target parent element based on child element

    • Use the child element's class or ID to target the parent element

    • Use the > combinator to select a parent element based on a direct child element

    • Use the ~ combinator to select a parent element based on a sibling element

  • Answered by AI
  • Q3. JS: create a calculator function. everytime you call it, it should print the next elem in sequence (condition: shouldn't pass any param) - 5,11,29,83
  • Ans. 

    Create a calculator function that prints the next element in sequence each time it is called.

    • Create a function that keeps track of the current number in the sequence

    • Each time the function is called, calculate the next number in the sequence based on the previous number

    • Print the next number in the sequence each time the function is called

  • Answered by AI
  • Q4. React: create a context and provide it such that the language will be changed on a button click
  • Ans. 

    Create a context in React to change language on button click

    • Create a context using createContext() method

    • Provide a state for language and a function to change it

    • Wrap the components that need access to language context with Context.Provider

    • Use useContext hook to access language context in components

    • Update language state on button click

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very informative interview. It was conducted for a specific role to optimise an app. I couldn't crack it, but very happy with the discussion

Skills evaluated in this interview

Senior Software Engineer Interview Questions & Answers

Incedo user image Meenakshi Somasundaram

posted on 28 Nov 2024

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

Choose the Options in Javascript, HTML, CSS

Round 2 - Technical 

(2 Questions)

  • Q1. ES6 concepts of javascript
  • Q2. Core concepts of Reactjs
  • Ans. 

    Reactjs is a JavaScript library for building user interfaces.

    • Component-based architecture

    • Virtual DOM for efficient updates

    • JSX for writing HTML in JavaScript

    • State management with setState()

    • Lifecycle methods like componentDidMount()

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Role discussion with Manager
  • Q2. Salary discussion with HR

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best

Skills evaluated in this interview

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 Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Do you have working experience of SwiftUI
  • Q2. Have you ever implemented or worked with server driven UIs
  • Ans. 

    Yes, I have experience implementing server driven UIs.

    • Implemented server driven UIs using JSON responses to dynamically update UI elements

    • Worked with frameworks like React and Angular to handle server driven UI updates

    • Used server driven UIs to efficiently manage and display large amounts of data

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is closure and types?
  • Ans. 

    Closure is a function that captures variables from its surrounding scope, allowing it to access those variables even after the scope has closed.

    • Closure allows a function to access variables from its lexical scope even after the function has finished executing.

    • Types of closures include lexical closures, which capture variables from the surrounding lexical scope, and function closures, which capture variables from the fu...

  • Answered by AI
  • Q2. What is Core data and all operations with example/scenarios
  • Ans. 

    Core Data is a framework provided by Apple for managing the model layer objects in an iOS application.

    • Core Data is used for storing, retrieving, and managing data in an iOS app.

    • It provides an object-oriented interface to work with data.

    • Operations include creating, reading, updating, and deleting data.

    • Example: Creating a new record in Core Data for a user profile.

    • Example: Fetching a list of items from Core Data to displ

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to join the company?
  • Q2. Why should we hire you

Interview Preparation Tips

Topics to prepare for Collabera Technologies Senior Software Engineer interview:
  • Core Data
  • SwiftUI
  • GCD
  • Memory Management
Interview preparation tips for other job seekers - Good inteview

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

One Program to check Linked List working both Singly and double. With Random number geneation.

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 May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. One small logical programming question, its quite easy
  • Q2. Some SQL queries
  • Q3. Spring boot questions and about my previous clients and projects

Interview Preparation Tips

Interview preparation tips for other job seekers - HR approach and their explanation about the projects and the clients is too good. They will know about you and will suggest some projects if you are interested in it, they will schedule it. I like the interview process.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response
Round 1 - Technical 

(1 Question)

  • Q1. Java Coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Coding plus java spring boot Microservices questions
Round 3 - Coding Test 

Develop java spring boot application from scratch

Round 4 - One-on-one 

(1 Question)

  • Q1. Coding questions. Real time questions on application
Round 5 - HR 

(1 Question)

  • Q1. Salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't belive in HR from Altimetrik. They will conduct multiple rounds and waste your time. Finally they said you are selected and will release offer letter. But nothing positive will happen. There won't be any response after that. They don't even reply to our emails or phone calls. Most disgusting experience.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 interview questions
  • Q2. Spring boot questions
Round 2 - Technical 

(1 Question)

  • Q1. Microservices strurcture and implementation

ATMECS Global Interview FAQs

How many rounds are there in ATMECS Global Senior Software Engineer interview?
ATMECS Global interview process usually has 2 rounds. The most common rounds in the ATMECS Global interview process are Technical and One-on-one Round.
How to prepare for ATMECS Global Senior Software Engineer 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 ATMECS Global. The most common topics and skills that interviewers at ATMECS Global expect are Java, NoSQL, REST API, WPF and API.
What are the top questions asked in ATMECS Global Senior Software Engineer interview?

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

  1. find out duplicates in list and prepare dictionary with count of characters in ...read more
  2. Reverse string without inbuilt functions in pyth...read more
  3. Couple of testing related questions and robot framework questions. Api question...read more

Tell us how to improve this page.

ATMECS Global Senior Software Engineer Interview Process

based on 1 interview

1 Interview rounds

  • Technical Round
View more
Join ATMECS Global "Trusted Partner” to organizations looking to shape their future
ATMECS Global Senior Software Engineer Salary
based on 376 salaries
₹5.5 L/yr - ₹23 L/yr
11% less than the average Senior Software Engineer Salary in India
View more details

ATMECS Global Senior Software Engineer Reviews and Ratings

based on 42 reviews

3.1/5

Rating in categories

3.1

Skill development

3.0

Work-life balance

3.2

Salary

2.7

Job security

2.8

Company culture

2.7

Promotions

3.0

Work satisfaction

Explore 42 Reviews and Ratings
Senior Software Engineer
376 salaries
unlock blur

₹5.5 L/yr - ₹23 L/yr

Software Engineer
286 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Technical Lead
126 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Associate Lead
114 salaries
unlock blur

₹8.7 L/yr - ₹24 L/yr

Associate Software Engineer
78 salaries
unlock blur

₹2.4 L/yr - ₹5.8 L/yr

Explore more salaries
Compare ATMECS Global with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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