Upload Button Icon Add office photos
Engaged Employer

i

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

Elite Elevators Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Elite Elevators Software Engineer Interview Questions and Answers

Updated 8 Mar 2024

Elite Elevators Software Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Founder of python
  • Ans. 

    Guido van Rossum

    • Guido van Rossum is the founder of Python programming language

    • He started developing Python in the late 1980s

    • Python was first released in 1991

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. According the qualifications
  • Q2. According the resume details qualifications
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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Ans. Good morning mam or sir first of all thank you for giving me this apportuniti. To introduce myself my name Chanda hemalatha iam staying proddatur. Now iam persving BSC graduation in yogivemana university My father name is Chanda sreenivasulu he is a weaver abd my mother name is Chanda kumari she is a homemaker. I have 2 sister and my hobbies watching TV, reading books, listening music.and my weekness is will not fell c...
  • Answered Anonymously
  • Q2. Why shud I hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be polite and use the right language and tone for a normal situation. Listen to the questions and think before you begin your answers asked the interviewer to repeat or explain further if you do not understand a question. Use the star method to answer questions about your skill and experience.

I applied via Campus Placement and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is about your self?
  • Q2. Why should I hire you?
  • Q3. I love traveling at a new places.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview
Be polite and use the right language and tone for a normal situation
Listen to the questions and think before you begin your answers
Ask the interviewer to repeat or explain forther if you do not understand a question
Use the STAR method to answer questions about skills and experience.

I applied via AmbitionBox and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude, Reasoning

Round 2 - Coding Test 

Technical codes

Interview Preparation Tips

Interview preparation tips for other job seekers - "Be proactive—market yourself as if you were marketing a business (brand you!). Take time to quantify your talents and learn to speak comfortably regarding accomplishments. Create a job search system for introducing, applying, and following up on leads/interviews. Plan your work, work your plan—a job search IS a job. Treat yourself to free or low-cost perks to reward effort, you earned it!” – Cindy
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 Resume tips
Round 2 - Assignment 
Round 3 - Coding Test 
Round 4 - Technical 

(1 Question)

  • Q1. Why should i hire you?
Round 5 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all GD tips
Round 6 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain silence..
Looking position is in straight manner

I applied via Campus Placement and was interviewed in Apr 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Why are u looking for a change?
  • Ans. Giving negative responses such as a naggging boss or work pressure should be avoided at any cost.
  • Answered Anonymously
  • Q3. Why about your career aspects
  • Ans. As s fresher, I want to learn new things from starting. I want to start my career with your company so that I can improve my skills and knowledge.
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for AmbitionBox Software Engineer interview:
  • Computer science
Interview preparation tips for other job seekers - This article is a cimpliting of my best job hunting advice, taken from my posts that have received that most positive feedback from job seekers and other career expects.

I applied via Company Website and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Reverse a given Linked List. Both O(1) and O(N) space complexity. Where N is the size of Linked List.
  • Ans. 

    Reverse a given Linked List with O(1) and O(N) space complexity.

    • For O(1) space complexity, use three pointers to reverse the links in place.

    • For O(N) space complexity, use a stack to store the nodes and then pop them to create the reversed list.

    • Be careful with edge cases such as empty list or list with only one node.

  • Answered by AI
  • Q2. Explain your project. and give a brief overview for the technologies involved in the process of making the project. (Expect some cross-questioning for the technologies you are going to mention).
  • Q3. In a party of N people, only one person is known to everyone. Such a person may be present in the party, if yes, (s)he doesn't know anyone in the party. Find this celebrity (is present).
  • Ans. 

    Find the celebrity in a party of N people where only one person is known to everyone.

    • The celebrity doesn't know anyone in the party.

    • We can use a stack to keep track of potential celebrities.

    • If a person knows someone, they cannot be a celebrity.

    • If a person doesn't know someone, we can push them onto the stack.

    • After iterating through all people, we check if the stack has only one person and if that person is known to eve

  • Answered by AI
  • Q4. Explain in detail the working behind the algorithms of Merge Sort and Quick Sort.
  • Ans. 

    Merge Sort and Quick Sort are sorting algorithms that use divide and conquer approach.

    • Merge Sort divides the array into two halves, sorts them recursively, and then merges them.

    • Quick Sort selects a pivot element, partitions the array around the pivot, and recursively sorts the sub-arrays.

    • Merge Sort has a worst-case time complexity of O(nlogn), while Quick Sort has an average case time complexity of O(nlogn).

    • Merge Sort ...

  • Answered by AI
  • Q5. Trapping Rain-Water problem: Given N non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
  • Ans. 

    Compute amount of water trapped in an elevation map after raining

    • Iterate through the array and find the maximum height on the left and right of each bar

    • Calculate the amount of water that can be trapped on each bar using the difference between the minimum of the two maximum heights and the height of the bar

    • Add up the amount of water trapped on each bar to get the total amount of water trapped

  • Answered by AI
  • Q6. Zigzag traversal of a given binary tree.
  • Ans. 

    Zigzag traversal of a binary tree is a way of traversing the tree in a zigzag pattern.

    • Use a stack to keep track of nodes to be visited.

    • For each level, alternate between adding nodes to the stack from left to right and right to left.

    • Pop nodes from the stack and add their children to the stack in the appropriate order.

    • Repeat until all nodes have been visited.

  • Answered by AI
  • Q7. Given a dictionary with {Key, Value} as {String, Integer}. Sort the given dictionary in ascending/descending order according to: 1) Key. 2) Value.
  • Ans. 

    Sort a dictionary by key or value in ascending/descending order.

    • Use sorted() function with lambda function to sort by key or value.

    • For ascending order, use reverse=False and for descending order, use reverse=True.

    • Example: sorted_dict = sorted(dictionary.items(), key=lambda x: x[0], reverse=True)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - Have a good understanding of Data Structures and Algorithm.
- Whatever your project may be, you should know aspect of it and expect some cross-questions as well.
- Be confident with what solution you are coming up, and try to make it efficient if asked.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Say thanks

I applied via Naukri.com and was interviewed in Mar 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 Resume tips
Round 2 - HR 

(3 Questions)

  • Q1. Resume and study details
  • Ans. Iam fresher and good communication skills
  • Answered Anonymously
  • Q2. Aptitude questions and coding
  • Q3. Communication skills

Interview Preparation Tips

Topics to prepare for AmbitionBox Software Engineer interview:
  • Resume
  • Company Profiling
  • Cloud Computing
  • Maintenance
  • Management
Interview preparation tips for other job seekers - I have a good communication skills and and achive their my good position
Contribute & help others!
anonymous
You can choose to be anonymous

Elite Elevators Interview FAQs

How many rounds are there in Elite Elevators Software Engineer interview?
Elite Elevators interview process usually has 1 rounds. The most common rounds in the Elite Elevators interview process are Technical.

Recently Viewed

SALARIES

Elite Elevators

SALARIES

Elite Elevators

INTERVIEWS

Reliance Communications

No Interviews

INTERVIEWS

Reliance Communications

No Interviews

INTERVIEWS

Elite Elevators

No Interviews

COMPANY BENEFITS

Creambell

No Benefits

JOBS

Elite Elevators

No Jobs

SALARIES

Elite Elevators

INTERVIEWS

Elite Elevators

No Interviews

INTERVIEWS

Indorama

No Interviews

Tell us how to improve this page.

Elite Elevators Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Elite Elevators Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Business Development Manager
166 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HR Executive
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Relationship Manager
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Regional Manager
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Elite Elevators with

Otis Elevator

4.0
Compare

KONE

4.2
Compare

Schindler Group

3.7
Compare

Johnson Lifts

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