Upload Button Icon Add office photos

Atos

Compare button icon Compare button icon Compare

Filter interviews by

Atos Java Developer Interview Questions and Answers

Updated 27 Aug 2024

Atos Java Developer Interview Experiences

5 interviews found

Java Developer Interview Questions & Answers

user image Praveen Pk

posted on 27 Aug 2024

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

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

Round 1 - Group Discussion 

They asked question about myself

Round 2 - Coding Test 

Gave codeing in advance java concepts

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Java8, Spring Boot, Microservices

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Constructor, Interface, Abstraction, Spring boot, Microservices
  • Q2. What is super keywords? What is Interface? What is constructor? What is use of @Componentscan ?
  • Ans. 

    Answers to common Java Developer interview questions.

    • super keyword is used to call a method or constructor of the parent class

    • Interface is a collection of abstract methods and constants that can be implemented by a class

    • Constructor is a special method used to initialize objects

    • @Componentscan is used to scan for Spring components in a specified package

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

(1 Question)

  • Q1. They asked all technical questions again and also had discussion on project
Round 3 - One-on-one 

(1 Question)

  • Q1. We had a discussion on CTC part and last organization.

Interview Preparation Tips

Topics to prepare for Atos Java Developer interview:
  • Core Java
  • Spring Boot
  • Micro-services
Interview preparation tips for other job seekers - Interview was quite easy ,be confident with your skills.

Skills evaluated in this interview

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 Oct 2022. There were 3 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 

(2 Questions)

  • Q1. Basic java fundamental
  • Q2. Spring boot microsercices
Round 3 - Technical 

(2 Questions)

  • Q1. This Round wholy Depends on Project
  • Q2. Project Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on Basic Fundamental

Atos interview questions for designations

 Fullstack Java Application Developer

 (1)

 Developer

 (1)

 Software Developer

 (10)

 Servicenow Developer

 (3)

 Automation Developer

 (1)

 RPA Developer

 (1)

 Cloud Developer

 (1)

 Software Developer fresher

 (2)

Java Developer Interview Questions & Answers

user image Mohan Gorrepati

posted on 23 Aug 2023

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

I applied via Campus Placement and was interviewed before Aug 2022. There were 5 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 - Aptitude Test 

Good and quite easy to crack most of them

Round 3 - Coding Test 

Some awareness of the languages

Round 4 - Technical 

(1 Question)

  • Q1. Java interview like polymorphism,datatypes
Round 5 - HR 

(1 Question)

  • Q1. Self introduction

Interview questions from similar companies

I applied via Company Website and was interviewed in Oct 2018. There was 0 interview round.

Interview Preparation Tips

General Tips: This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher.
You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Skills: Communication, Body Language, Problem Solving, Leadership, Presentation Skills
Duration: <1 week

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Communication and interpersonal and Team handle qualities

Interview Preparation Tips

Interview preparation tips for other job seekers - Be frank and say loudly what u r going to say be positive

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

Interview Questionnaire 

1 Question

  • Q1. About my college project

Interview Preparation Tips

Interview preparation tips for other job seekers - go through the RS agarwal and aptitude and reasoning

I appeared for an interview before Feb 2021.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - I have 1 years experience in wipro

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was around 10am
It was quite a normal online examination kind of environment 
People from the company were there to invigilate 
All were quite nice and helpful in case the exam got stuck

  • Q1. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph data structure to represent the relationships between characters in the words.

    • Perform a topological sort on the graph to find the order of characters.

    • Return the smallest lexicographical order of characters as the result.

  • Answered by AI
  • Q2. 

    Check Duplicate Within K Distance

    Given an array of integers arr of size N and an integer K, determine if there are any duplicate elements within a distance of K from each other in the array. Return "true...

  • Ans. 

    Check if there are any duplicate elements within a distance of K from each other in the array.

    • Iterate through the array and keep track of the indices of elements using a hashmap.

    • For each element, check if it already exists in the hashmap within distance K.

    • Return true if a duplicate is found within distance K, otherwise return false.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Timing was 2pm when it started
Interviewer was polite

  • Q1. 

    Kth Largest Element Problem Statement

    Ninja enjoys working with numbers, and Alice challenges him to find the Kth largest value from a given list of numbers.

    Input:

    The first line contains an integer 'T...
  • Ans. 

    The task is to find the Kth largest element in a given list of numbers for each test case.

    • Read the number of test cases 'T'

    • For each test case, read the number of elements 'N' and the Kth largest number to find 'K'

    • Sort the array in descending order and output the Kth element

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Timing was 9 am onwards 
Interviewer was good enough

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaAbove 7 CGPA with no pending backlogsWipro Limited interview preparation:Topics to prepare for the interview - Java, C++, DBMS, Data Structures, Dot net, HTML, CSS, JSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on specialization of any one skill and keep a basic knowledge of all the skills you mention in your resume
Tip 2 : Gain confidence in presenting yourself by practicing well before
Tip 3 : Gain a basic knowledge of the company you go for selection

Application resume tips for other job seekers

Tip 1 : Resume should be simple and precise but pretty smart to cover your skills 
Tip 2 : Mention what you really know,no false things

Final outcome of the interviewRejected

Skills evaluated in this interview

Atos Interview FAQs

How many rounds are there in Atos Java Developer interview?
Atos interview process usually has 2-3 rounds. The most common rounds in the Atos interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Atos Java 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 Atos. The most common topics and skills that interviewers at Atos expect are Java, Javascript, Hibernate, Spring and Spring Boot.
What are the top questions asked in Atos Java Developer interview?

Some of the top questions asked at the Atos Java Developer interview -

  1. What is super keywords? What is Interface? What is constructor? What is use of ...read more
  2. Constructor, Interface, Abstraction, Spring boot, Microservi...read more
  3. They asked all technical questions again and also had discussion on proj...read more

Tell us how to improve this page.

Atos Java Developer Interview Process

based on 4 interviews

Interview experience

4.8
  
Excellent
View more
Atos Java Developer Salary
based on 52 salaries
₹2.8 L/yr - ₹8 L/yr
26% less than the average Java Developer Salary in India
View more details

Atos Java Developer Reviews and Ratings

based on 10 reviews

4.0/5

Rating in categories

4.0

Skill development

3.9

Work-life balance

3.1

Salary

2.9

Job security

3.2

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 10 Reviews and Ratings
Associate Consultant
5.2k salaries
unlock blur

₹3 L/yr - ₹11.5 L/yr

Consultant
4k salaries
unlock blur

₹7 L/yr - ₹27 L/yr

Senior Consultant
2k salaries
unlock blur

₹10.8 L/yr - ₹35.5 L/yr

System Engineer
930 salaries
unlock blur

₹2 L/yr - ₹6.3 L/yr

Software Engineer
842 salaries
unlock blur

₹2.4 L/yr - ₹10.7 L/yr

Explore more salaries
Compare Atos with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

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