Upload Button Icon Add office photos
Engaged Employer

i

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

Etraveli Group Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Etraveli Group Software Engineer Interview Questions and Answers

Updated 29 Feb 2024

Etraveli Group Software Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Code refactoring
  • Q2. Java service for refactoring
  • Ans. 

    Java service for refactoring involves restructuring existing code without changing its external behavior.

    • Refactoring is the process of improving code without changing its functionality.

    • Java service for refactoring can include tools like IntelliJ IDEA, Eclipse, or NetBeans.

    • Common refactoring techniques include extracting methods, renaming variables, and removing duplicate code.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. HLD, LLD Design
  • Q2. HLD of current project and any other system like lift functioning
  • Ans. 

    High Level Design (HLD) of current project and comparison with lift system functionality

    • Current project HLD includes system architecture, modules, data flow, and interfaces

    • Lift system functionality involves user input, control system, motor operation, and safety mechanisms

    • Both systems require efficient communication between components for smooth operation

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Java questions on new functionality
  • Q2. Java8, Java17 difference Exception Handling
Round 5 - HR 

(1 Question)

  • Q1. Flexibility Salary discussion

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Code pairing round.
Round 2 - Technical 

(1 Question)

  • Q1. System design round
Round 3 - Behavioral 

(1 Question)

  • Q1. About past experiences
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more

Interview questions from similar companies

I applied via Company Website and was interviewed in Apr 2022. There were 6 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Assignment 

Naaptol

Round 3 - Assignment 

Naaptol

Round 4 - Aptitude Test 

Naaptol

Round 5 - Case Study 

Study ing information

Round 6 - One-on-one 

(5 Questions)

  • Q1. Which place are you studying
  • Q2. Which subject are u interested
  • Q3. Which place are you born
  • Q4. Iam born in chamadala(v),jaladhanki (m)
  • Q5. Are you complete your graduation

Interview Preparation Tips

Interview preparation tips for other job seekers - Naaptol shopping information is very well..
Round 1 - Aptitude Test 

Logical questions and reasoning questions and direction questions

Round 2 - Coding Test 

3 coding questions upto 3 u write 2 codeing questions and pass all test cases

Round 3 - HR 

(2 Questions)

  • Q1. Business discussion and about ur self and about ur family
  • Q2. What u salary package and show u government proof

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java important topics for encapsulation and Abstraction interheritence and polymorphism and sql what is join and ddl statement

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

Interview experience
4
Good
Difficulty level
Hard
Process Duration
-
Result
-

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

Basic aptitude questions were asked Reasoning wgrh

Round 2 - Coding Test 

Two hard level coding questions of leetcode based on binary search

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck you can do anything

I applied via Company Website and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ questions,coding, languages

Round 2 - Coding Test 

All programming questions

Interview Preparation Tips

Topics to prepare for AmbitionBox Software Engineer interview:
  • Java, python
Interview preparation tips for other job seekers - Job searching,use information about interviews and networks

I applied via Job Portal and was interviewed in Nov 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. About java and execution
  • Q2. Java fundamentals using of java what we clear
  • Q3. What do you do when the system getting more errors
  • Ans. 

    I analyze the error logs and identify the root cause of the errors. Then, I work on fixing the issues.

    • Analyze the error logs to identify the root cause of the errors

    • Work on fixing the issues causing the errors

    • Implement preventive measures to avoid similar errors in the future

  • Answered by AI
  • Q4. Java introduction and it's invention
  • Ans. 

    Java is a high-level programming language invented by James Gosling at Sun Microsystems in 1995.

    • Java is an object-oriented language that is platform-independent.

    • It was designed to have a simple syntax and be easy to learn.

    • Java is used for developing a wide range of applications, from mobile apps to enterprise software.

    • Java's popularity is due in part to its robustness, security, and scalability.

    • Some popular Java-based ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for AmbitionBox Software Engineer interview:
  • English Literature
Interview preparation tips for other job seekers - Be silently when the interview is processing be confident

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. According the qualifications
  • Q2. According the resume details qualifications

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

Etraveli Group Interview FAQs

How many rounds are there in Etraveli Group Software Engineer interview?
Etraveli Group interview process usually has 4-5 rounds. The most common rounds in the Etraveli Group interview process are Technical, HR and Resume Shortlist.
How to prepare for Etraveli Group 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 Etraveli Group. The most common topics and skills that interviewers at Etraveli Group expect are Python, Agile Methodology, Ajax, Automation and Backend.
What are the top questions asked in Etraveli Group Software Engineer interview?

Some of the top questions asked at the Etraveli Group Software Engineer interview -

  1. HLD of current project and any other system like lift function...read more
  2. Java service for refactor...read more
  3. Java8, Java17 difference Exception Handl...read more

Tell us how to improve this page.

Etraveli Group Software Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Etraveli Group Software Engineer Salary
based on 12 salaries
₹23 L/yr - ₹34 L/yr
227% more than the average Software Engineer Salary in India
View more details
Travel Consultant
104 salaries
unlock blur

₹3 L/yr - ₹7.2 L/yr

Senior Travel Consultant
39 salaries
unlock blur

₹4.4 L/yr - ₹7 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹28 L/yr - ₹38 L/yr

Team Lead
13 salaries
unlock blur

₹4.2 L/yr - ₹13.5 L/yr

Software Engineer
12 salaries
unlock blur

₹23 L/yr - ₹34 L/yr

Explore more salaries
Compare Etraveli Group with

Cogoport

2.9
Compare

Arzooo.com

2.4
Compare

KrazyBee

3.7
Compare

Treebo Hotels

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