Upload Button Icon Add office photos
Engaged Employer

i

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

Adventure India Journey Verified Tick

Compare button icon Compare button icon Compare
4.8

based on 3 Reviews

i

This rating is based on a small number of reviews, so it may not fully reflect the overall employee experience.

Filter interviews by

Adventure India Journey Software Engineer Interview Questions and Answers

Updated 24 Sep 2024

Adventure India Journey Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to IOS Swift UI and core data
Round 2 - Aptitude Test 

Qualitative, Logical and IOS related question

Round 3 - Technical 

(1 Question)

  • Q1. Related to IOS Swift UI and core data
Round 4 - Aptitude Test 

Qualitative, Logical and IOS related question

Interview questions from similar companies

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

It was a algorithms and DP questions

Round 2 - One-on-one 

(1 Question)

  • Q1. System design question on Github
Round 3 - One-on-one 

(1 Question)

  • Q1. Language knowledge test
Round 4 - HR 

(1 Question)

  • Q1. Company culture fit round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2023. 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 - Aptitude Test 

General reasoning and Mathmatics Aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Core Java and Coding questions

Interview Preparation Tips

Topics to prepare for Yatra Software Engineer interview:
  • Core Java
  • Advanced Java
  • SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. To find the kth minimum element from BST
  • Ans. 

    To find the kth minimum element from a Binary Search Tree (BST)

    • Perform an in-order traversal of the BST to get elements in sorted order

    • Return the kth element from the sorted list

    • Time complexity: O(n) where n is the number of nodes in the BST

  • Answered by AI
  • Q2. Basic OOPs question like inheritance encapsulation
Round 2 - Technical 

(2 Questions)

  • Q1. In a BST two numbers are swapped find swapped nos.
  • Ans. 

    To find swapped numbers in a BST, perform inorder traversal and keep track of previous node.

    • Perform inorder traversal of the BST

    • Keep track of the previous node while traversing

    • If at any point, the current node's value is less than the previous node's value, those are the swapped numbers

  • Answered by AI
  • Q2. What you did in college projects
Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles: find the fastest 3 horses in 25 horse race with a race and 5 horses can be run at a time
  • Q2. Weakness and strength. how a friend will describe you

Interview Preparation Tips

Topics to prepare for Ixigo.com Software Engineer interview:
  • java
  • dsa
  • puzzle
  • tree
Interview preparation tips for other job seekers - DSA and system design are needed

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Platform leetcode. you need to be good at coding and know about time complexity.

Interview Preparation Tips

Interview preparation tips for other job seekers - learn and prepare well for the test.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

45 MCQ Which includes below topics
Basic core Java
Database
Spring
Hibernate
Angular
One program based on core Java logic

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Basic dsa, output based questions

Round 3 - Technical 

(1 Question)

  • Q1. Discussion around projects and tech stack
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 - Coding Test 

They asked me two coding questions:
1.) Floyd's cycle finding problems
2.) Two-pointer-related question

Round 3 - Coding Test 

They asked me two coding questions:
1.) Check if the given binary tree is good
Conditions: If any binary tree from root to a child node element is in ascending order is a good binary tree.
2.) Given the linked list find if there is 'Y' formation in it.

Round 4 - Behavioral interview 

(1 Question)

  • Q1. SDLC, SCRUM master, Agile module.
Round 5 - HR 

(1 Question)

  • Q1. I got called about a salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do practice DSA questions from Geeksforgeek, Leetcode, and InterviewBit.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Jun 2022. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Inner Join query. What is the meaning of this statement WebDriver driver = new Firefox Driver. Puzzles. Authentication authorization.
  • Q2. Regression v/s Retesting
  • Q3. Interface v/s Abs class
  • Q4. Priority v/s Severity
  • Q5. Validation v/s verification
  • Q6. WebDriver driver = new Firefox Driver(); What does this statement signifies
  • Ans. 

    The statement initializes a WebDriver object for Firefox browser testing.

    • Initializes a WebDriver object specifically for Firefox browser

    • Used for automating tests on Firefox browser

    • Can be used to interact with elements on web pages

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed before Jun 2022. There were 4 interview rounds.

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 - Coding Test 

2 questions based on bit manipulation

Round 3 - Technical 

(1 Question)

  • Q1. Sql query to join two tables
  • Ans. 

    Use SQL JOIN to combine data from two tables based on a related column

    • Use INNER JOIN, LEFT JOIN, RIGHT JOIN, or FULL JOIN depending on the requirement

    • Specify the columns to join on using ON keyword

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are your hobbies

Skills evaluated in this interview

Adventure India Journey Interview FAQs

How many rounds are there in Adventure India Journey Software Engineer interview?
Adventure India Journey interview process usually has 4 rounds. The most common rounds in the Adventure India Journey interview process are Technical and Aptitude Test.
How to prepare for Adventure India Journey 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 Adventure India Journey. The most common topics and skills that interviewers at Adventure India Journey expect are API Gateway, AWS Lambda, Elastic Search, Hibernate and JPA.

Tell us how to improve this page.

Interview Questions from Similar Companies

MakeMyTrip Interview Questions
3.7
 • 120 Interviews
BCD Travel Interview Questions
4.4
 • 84 Interviews
Thomas Cook Interview Questions
3.8
 • 43 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Thrillophilia Interview Questions
3.9
 • 21 Interviews
Ixigo.com Interview Questions
3.7
 • 21 Interviews
View all
Compare Adventure India Journey with

Indiahikes

4.6
Compare

Thrillophilia

3.9
Compare

Cox & Kings

3.7
Compare

MakeMyTrip

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview