Premium Employer

i

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

AtkinsRealis Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

AtkinsRealis Trainee Interview Questions and Answers

Updated 13 Aug 2024

AtkinsRealis Trainee Interview Experiences

1 interview found

Trainee Interview Questions & Answers

user image Anonymous

posted on 13 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

It was interactive session . topic given was sustainable resources.

Round 2 - HR 

(2 Questions)

  • Q1. Basic hr questions
  • Q2. Tell me about yourself, where do you see yourself in 5 years
  • Ans. 

    I am a motivated individual with a passion for learning and growth. In 5 years, I see myself as a successful professional in my field, taking on more responsibilities and contributing to the growth of the organization.

    • Continuing to enhance my skills and knowledge through training and development opportunities

    • Taking on leadership roles within the company

    • Contributing to the success and growth of the organization

    • Building ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Perform well in hr round

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First question in hr interview is tell about yourself then the hr asked questions what I mentioned in my resume. So put the information in resume what you known well. My unique talent is I'm a stage spea...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, be confident, don't put irrelevant information in your resume update yourself relating to your studies

I applied via Campus Placement and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.interviewer asked about my mini Project, some questions from my project on Machine Learning and some basic HR questions 2.If you have mentioned some projects in resume the interviewer will surely ask fr...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer confidently
Be good on basics whatever domain you're from.
Good to know basics of one programming



I applied via Campus Placement and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Why Java is platform independent?
  • Ans. 

    Java is platform independent due to its bytecode and JVM.

    • Java code is compiled into bytecode which is platform-independent.

    • JVM (Java Virtual Machine) interprets the bytecode and executes it on any platform.

    • JVM acts as an abstraction layer between the Java code and the underlying hardware.

    • This allows Java programs to run on any platform that has a JVM installed.

    • For example, a Java program written on a Windows machine ca...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Java is platform-independent because it does not depend on any type of platform. Hence, Java is platform-independent language. In Java, programs are compiled into byte code and that byte code is platform-independent. ... Any machine to execute the byte code needs the Java Virtual Machine.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Difference between dbms and rdbms , project questions , different sdlc models explain , void means in java , difference between function overloading and function overriding .

I applied via Campus Placement and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. 1.Tell me about yourself.
  • Q2. 2. Some basic questions from DBMS, iot and cloud.
  • Q3. 3. Explain your project ( technology u have used and what is it).
  • Q4. 4. Are you willing to relocate.

Interview Preparation Tips

Interview preparation tips for other job seekers - HR was nice and friendly. Overall it was a NYC experience.
All the best guys.

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me aboit yourself
  • Q2. Why mechatronics? Why infosys?

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowbyour projects inside out. Prepare your basic hr questions from the beginning.

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The questions were on front end web development questions with managerial interview

Interview Preparation Tips

Interview preparation tips for other job seekers - The overall experience was good. The interview was on technical and managerial skills based on the experience gained.

I applied via Campus Placement and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Concepts of Oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basic concepts of OOPS.Explain final year project.
Be confident.

I applied via Campus Placement and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. OOPs concepts
  • Ans. Explain all the pillar of OOPs
  • Answered by Nilesh Yadav
  • Q2. What is call by value and call by reference
  • Ans. 

    Call by value and call by reference are two ways of passing arguments to a function in programming.

    • Call by value passes a copy of the value to the function.

    • Call by reference passes the memory address of the value to the function.

    • In call by value, changes made to the parameter inside the function do not affect the original value.

    • In call by reference, changes made to the parameter inside the function affect the original ...

  • Answered by AI
  • Q3. What is sorting
  • Ans. 

    Sorting is the process of arranging elements in a specific order.

    • Sorting is used to organize data in a meaningful way.

    • It can be done in ascending or descending order.

    • Common sorting algorithms include bubble sort, insertion sort, and quicksort.

  • Answered by AI
  • Q4. What is pre increment and post increment
  • Ans. 

    Pre increment and post increment are unary operators used to increment the value of a variable by 1.

    • Pre increment (++x) increments the value of x and then returns the new value.

    • Post increment (x++) returns the value of x and then increments it.

    • Both operators are commonly used in loops and can also be used with other arithmetic operations.

    • Pre increment is faster than post increment as it does not require a temporary var

  • Answered by AI
  • Q5. What is exception handling
  • Ans. 

    Exception handling is the process of handling errors and unexpected events in a program.

    • It allows a program to gracefully handle errors and prevent crashes.

    • It involves catching and handling exceptions that occur during program execution.

    • Common techniques include try-catch blocks and throwing custom exceptions.

    • Examples of exceptions include null pointer exceptions and divide by zero errors.

  • Answered by AI
  • Q6. What is SDLC
  • Ans. 

    SDLC stands for Software Development Life Cycle.

    • It is a process used to design, develop, and test software.

    • It includes phases such as planning, analysis, design, implementation, and maintenance.

    • Each phase has its own set of deliverables and goals.

    • It helps ensure that software is developed efficiently and meets user requirements.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

  • Answered by AI
  • Q7. What is ACID properties
  • Ans. 

    ACID properties are a set of properties that ensure database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that a transaction is treated as a single, indivisible unit of work.

    • Consistency ensures that a transaction brings the database from one valid state to another.

    • Isolation ensures that concurrent transactions do not interfere with each other.

    • Du...

  • Answered by AI
  • Q8. One pattern question
  • Q9. What is your project
  • Q10. What is your Role in that particular project
  • Q11. What did you know about our company

Interview Preparation Tips

Interview preparation tips for other job seekers - It was quite a nice experience , interviewer is very polite. They explain each and every query of mine at the end of interview. He is having experience of 17 year in talent acquisition.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

AtkinsRealis Interview FAQs

How many rounds are there in AtkinsRealis Trainee interview?
AtkinsRealis interview process usually has 2 rounds. The most common rounds in the AtkinsRealis interview process are Group Discussion and HR.

Recently Viewed

INTERVIEWS

A2Z Group

No Interviews

SALARIES

Anyone Home

INTERVIEWS

AtkinsRealis

No Interviews

JOBS

AtkinsRealis

No Jobs

SALARIES

Anyone Home

INTERVIEWS

Anyone Home

No Interviews

INTERVIEWS

A2Z Events

No Interviews

LIST OF COMPANIES

Arctech Systems

Overview

INTERVIEWS

Anyone Home

No Interviews

SALARIES

AtkinsRealis

Tell us how to improve this page.

AtkinsRealis Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join AtkinsRealis Engineering a better future for our planet and its people

Trainee Interview Questions from Similar Companies

TCS Trainee Interview Questions
3.7
 • 59 Interviews
Infosys Trainee Interview Questions
3.6
 • 15 Interviews
View all
AtkinsRealis Trainee Salary
based on 8 salaries
₹3.6 L/yr - ₹5.2 L/yr
65% more than the average Trainee Salary in India
View more details
Assistant Engineer
223 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graduate Engineer
196 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HR Analyst
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design Engineer
98 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Lead Designer
97 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare AtkinsRealis with

Jacobs Engineering Group

4.1
Compare

Bechtel

4.0
Compare

Fluor Corporation

4.3
Compare

AECOM

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