Upload Button Icon Add office photos

Atandra Energy

Compare button icon Compare button icon Compare

Filter interviews by

Atandra Energy Interview Questions and Answers

Updated 2 Jul 2025
Popular Designations

Atandra Energy Interview Experiences

4 interviews found

Engineer Interview Questions & Answers

user image Yuvaraj.P

posted on 2 Jul 2025

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

I appeared for an interview in Jan 2025, where I was asked the following questions.

  • Q1. For loop question
  • Q2. Array and Object
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. What is break Statment
  • Ans. 

    A break statement is used to exit a loop or switch statement prematurely in programming.

    • Terminates the nearest enclosing loop (for, while, do-while). Example: 'for (int i = 0; i < 10; i++) { if (i == 5) break; }'

    • Can also be used in switch statements to exit after a case is executed. Example: 'switch (x) { case 1: doSomething(); break; }'

    • Helps in controlling the flow of execution, especially in nested loops.

    • Using bre...

  • Answered by AI
  • Q2. What is loop and it's type
  • Ans. 

    A loop is a programming construct that repeats a block of code multiple times based on a condition. Types include for, while, and do-while.

    • For Loop: Executes a block of code a specific number of times. Example: for (int i = 0; i < 5; i++) { /* code */ }

    • While Loop: Repeats a block of code as long as a condition is true. Example: while (condition) { /* code */ }

    • Do-While Loop: Similar to a while loop, but guarantees at...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Sep 2022.

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. About previous working experience
  • Q2. About Sales Experience
Round 3 - HR 

(2 Questions)

  • Q1. About the previous Salary
  • Q2. About Expected Salary

Interview Preparation Tips

Interview preparation tips for other job seekers - I am requesting don't join in this company.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. 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 

(2 Questions)

  • Q1. Tell me about Yourself
  • Q2. About previous Company

Top trending discussions

View All
Interview Hub
1w
a client servicing executive
FeedCard Image
Got a question about Atandra Energy?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Can you provide me venue my interview in holitech?
  • Q2. Is my interview technical
  • Ans. 

    The interview may include technical questions relevant to the role and team dynamics.

    • Technical interviews often assess specific skills, such as coding or problem-solving.

    • For example, a software team leader might be asked to solve a coding challenge.

    • Interviews may also include scenario-based questions to evaluate leadership and decision-making.

    • For instance, you might be asked how to handle a conflict within the team.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 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.

What rounds were there? (Optional)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Teamcenter Architecture?
  • Q2. Dispatcher function?
  • Q3. Steps of cloning?
  • Q4. Workflow designer?
Round 2 - Technical 

(2 Questions)

  • Q1. Area of expertise?
  • Q2. Steps to resolve a problem?
  • Ans. 

    Identify, analyze, brainstorm solutions, implement, evaluate, and document.

    • Identify the problem by gathering information and understanding the root cause.

    • Analyze the problem to determine the best course of action.

    • Brainstorm potential solutions with team members or stakeholders.

    • Implement the chosen solution and monitor its effectiveness.

    • Evaluate the outcome to ensure the problem is resolved and document the process for ...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Ready to reallocate?
  • Ans. 

    Yes, I am ready to reallocate for the right opportunity.

    • I am open to relocating for the right job opportunity that aligns with my career goals.

    • I have experience moving for previous roles and am comfortable with the process.

    • I understand the benefits of relocating, such as new experiences and career growth.

  • Answered by AI
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Read your resume well.

Skills evaluated in this interview

Be interview-ready. Browse the most asked HR questions.
illustration image
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Total questions - 5
Quantitative, Logical Reasoning and English

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What is the implementation of a circular queue using structures in C and classes in C++?
  • Ans. 

    Implementing a circular queue using structures in C and classes in C++ for efficient data management.

    • A circular queue uses a fixed-size array and wraps around when the end is reached.

    • In C, define a structure with front, rear, and size attributes.

    • In C++, use a class to encapsulate queue operations and maintain data integrity.

    • Both implementations should include functions for enqueue, dequeue, and checking if the queue is...

  • Answered by AI
  • Q2. Sort a vector of strings alphabetically
  • Ans. 

    Sort a vector of strings alphabetically using standard sorting algorithms.

    • Use built-in sorting functions like std::sort in C++ or Collections.sort in Java.

    • Example in Python: sorted(['banana', 'apple', 'cherry']) returns ['apple', 'banana', 'cherry'].

    • Consider case sensitivity; 'Apple' and 'apple' may be treated differently.

    • For custom sorting, provide a key function to define sorting criteria.

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

.net coding and pseudo coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Many invisible terms and conditions and repeated questions.
Asking questions and new conditions without any hesitation how other experienced person will react.
Like asking to reject current offer, 2 years bond for senior role???.
I was thinking to drop the process, but hopefully red signal came from their end.
It feels same work environment of Chinese, Japanese and Taiwan companies, like strict hours, 5 Days office etc.
Not sure they aware of AI copilot, which does 80% of coding in few minutes, manual software development and man power will be gone soon.
Round 1 - Technical 

(1 Question)

  • Q1. Java data structure related question

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare algorithm and basic java question

Atandra Energy Interview FAQs

How many rounds are there in Atandra Energy interview?
Atandra Energy interview process usually has 2-3 rounds. The most common rounds in the Atandra Energy interview process are Resume Shortlist, Technical and HR.
How to prepare for Atandra Energy 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 Atandra Energy. The most common topics and skills that interviewers at Atandra Energy expect are Business Development, Sales, Marketing, Sales Management and UPS.
What are the top questions asked in Atandra Energy interview?

Some of the top questions asked at the Atandra Energy interview -

  1. What is loop and it's t...read more
  2. What is break Statm...read more
  3. Array and Obj...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 6 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

JBS Enterprises Interview Questions
3.1
 • 27 Interviews
HOLITECH INDIA Interview Questions
4.0
 • 27 Interviews
Johnson Electric Interview Questions
3.5
 • 15 Interviews
BYD Electronics Interview Questions
3.3
 • 14 Interviews
Essae Digitronics Interview Questions
3.9
 • 11 Interviews
Essae Teraoka Interview Questions
3.6
 • 10 Interviews
Tektronix Interview Questions
3.6
 • 10 Interviews
Fujitec Interview Questions
3.9
 • 9 Interviews
View all

Atandra Energy Reviews and Ratings

based on 103 reviews

4.4/5

Rating in categories

4.3

Skill development

4.2

Work-life balance

4.2

Salary

4.3

Job security

4.2

Company culture

4.0

Promotions

4.2

Work satisfaction

Explore 103 Reviews and Ratings
Human Resource Recruiter

Chennai

1-3 Yrs

₹ 2-4 LPA

Inside Sales Senior Executive

Chennai

1-3 Yrs

Not Disclosed

DB Expert

Chennai

2-4 Yrs

Not Disclosed

Explore more jobs
Service Engineer
17 salaries
unlock blur

₹1.7 L/yr - ₹4.2 L/yr

Design Engineer
9 salaries
unlock blur

₹1.9 L/yr - ₹3.4 L/yr

Assistant Manager
7 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Executive Accountant
7 salaries
unlock blur

₹0.9 L/yr - ₹2.5 L/yr

Assistant Sales Manager
7 salaries
unlock blur

₹4.2 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Atandra Energy with

JBS Enterprises

3.1
Compare

Essae Teraoka

3.6
Compare

Fujitec

3.9
Compare

Essae Digitronics

3.9
Compare
write
Share an Interview