Upload Button Icon Add office photos

Filter interviews by

Travelyaari Interview Questions and Answers

Updated 27 Aug 2017

Travelyaari Interview Experiences

1 interview found

I was interviewed in May 2017.

Interview Questionnaire 

7 Questions

  • Q1. Write a program to take string and give all possible permutation combination of it?
  • Ans. 

    This program generates all possible permutations and combinations of a given string.

    • Use recursion to generate permutations and combinations.

    • Start with an empty result array and an empty prefix string.

    • For each character in the input string, append it to the prefix and recursively generate permutations and combinations for the remaining characters.

    • Add the prefix to the result array.

    • Repeat the process for all characters i

  • Answered by AI
  • Q2. Tree traversing?
  • Q3. Conversion prefix, postfix?
  • Q4. Sorting algorithms?
  • Q5. Introduce yourself?
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about learning new technologies and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about learning new technologies

    • Strong problem-solving skills

  • Answered by AI
  • Q6. What is your salary expectation?
  • Ans. 

    My salary expectation is based on my qualifications, experience, and the industry standards.

    • Consider my qualifications and experience in the field

    • Research industry standards for similar positions

    • Be open to negotiation based on the overall compensation package offered

  • Answered by AI
  • Q7. Are you comfortable with relocation?
  • Ans. 

    Yes, I am comfortable with relocation as I am open to new opportunities and experiences.

    • I am open to new opportunities and experiences

    • I am willing to relocate for the right job

    • I have relocated in the past for career advancement

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions from Time and work, ages, ratio, speed, and distance etc were asked in aptitude. And in technical part, two programs were given the factorial and prime number.
Tips: study well before attending any interview.
Duration: 1 hour
Total Questions: 30

Round: Technical Interview
Experience: questions were asked from the data structure, algorithms, Strings, collections etc
Tips: practice and keep revising concepts

Round: HR Interview
Experience: In this round, my salary expectation and location for job, job timing, and other questions were asked
Tips: About the salary don't demand much salary just say that you would accept the current market salary.

College Name: Govt college of Engg and ceramic technology

Skills evaluated in this interview

System Engineer Trainee Interview Questions asked at other Companies

Q1. 1.what is stack? 2.undo-redo 3.backward and forward in the browser 4.polymorphism 5.given array find the frequency of each element. 6.Pseudo code is given on screen asked for output ...topic :--multiple inheritence
View answer (1)

Juniper Networks

Our employees have rated us 4.2 on AmbitionBox.

Join a company where our employee's ratings speak volumes.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Merge 2 Sorted linked list
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list

    • Create a new linked list to store the merged result

    • Iterate through both input linked lists and compare nodes to determine the order in which they should be merged

    • Update the next pointers of the nodes in the new linked list accordingly

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Medium leetcode
Round 2 - Technical 

(1 Question)

  • Q1. Regarding experience
Round 3 - Behavioral 

(1 Question)

  • Q1. General behavioural question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Machine Coding of Google Calendar

Round 2 - Coding Test 

Machine Coding of MP3 Player

Round 3 - One-on-one 

(1 Question)

  • Q1. Find Duplicates problem
  • Ans. 

    Find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Why Simpl? and compensation
  • Ans. 

    Simpl offers a collaborative and innovative work environment with competitive compensation.

    • Simpl values teamwork and creativity in software development

    • Competitive compensation package offered to attract top talent

    • Opportunities for growth and learning through challenging projects

  • Answered by AI

Skills evaluated in this interview

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

I applied via Instahyre and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Coding Test 

If its for the SDE 1 , mostly they will start with javascript fundamentals and deep dive in the hard topics

Interview Preparation Tips

Topics to prepare for Simpl Software Engineer interview:
  • Hld
  • Performance optimization
Interview preparation tips for other job seekers - Mostly will be similar to the first round and even more in depth than the first round

I applied via Referral and was interviewed in Dec 2021. There were 5 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 - Aptitude Test 

Easy, simple aptitude questions. 50 questions had to be solved in 15 minutes.

Round 3 - Coding Test 

Hackerrank test. MCQs on DSA. 1 coding question and two SQL queries.

Round 4 - Technical 

(1 Question)

  • Q1. Technical + Managerial round of around 1 hour. Questions were asked mostly on resume and projects done.
Round 5 - Behavioral 

(1 Question)

  • Q1. Questions on basics of data structures and database.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be fluent with whatever mentioned on resume and projects done.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Tell me about yourself

Round 2 - One-on-one 

(1 Question)

  • Q1. What is static method
  • Ans. 

    A static method is a method that belongs to the class itself, rather than to instances of the class.

    • Static methods can be called without creating an instance of the class.

    • They are commonly used for utility functions that do not require access to instance variables.

    • Static methods are declared using the 'static' keyword in the method signature.

    • Example: Math.max() is a static method in the Math class that returns the maxi

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Basic DSA questions related to string and hashmap

Round 2 - One-on-one 

(2 Questions)

  • Q1. Return true if the sentence use all the vowels else false
  • Q2. When to use BFS, DFS and basic DSA questions?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was good , 2 questions are there to code.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Cs fundamental, Projects, coding.
  • Q2. A simple coding question of string using map
Round 3 - Technical 

(2 Questions)

  • Q1. What is React router. what does it do.
  • Ans. 

    React Router is a popular routing library for React applications.

    • React Router is used for handling navigation in React applications.

    • It allows defining multiple routes in the application and rendering different components based on the URL.

    • React Router provides components like BrowserRouter, Route, Switch, and Link for routing.

    • Example: will render the About component when the URL

  • Answered by AI
  • Q2. Questions based on react basics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patience you will do it easily.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2022. There were 3 interview rounds.

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 Resume tips
Round 2 - Case Study 

Was asked about a case study regarding cost and profit, interviewer was observing my logical thinking and approach towards the problem.
Basically they'll check if you are covering all aspects or not.

Round 3 - Coding Test 

SQL easy to medium level

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and open to discuss various scenarios.
Contribute & help others!
anonymous
You can choose to be anonymous

Travelyaari Interview FAQs

How to prepare for Travelyaari 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 Travelyaari. The most common topics and skills that interviewers at Travelyaari expect are HR Generalist Activities.
What are the top questions asked in Travelyaari interview?

Some of the top questions asked at the Travelyaari interview -

  1. Write a program to take string and give all possible permutation combination of...read more
  2. conversion prefix, postf...read more
  3. tree traversi...read more

Tell us how to improve this page.

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.9
 • 153 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
Simpl Interview Questions
2.9
 • 17 Interviews
EazyDiner Interview Questions
3.2
 • 14 Interviews
KrazyBee Interview Questions
3.7
 • 14 Interviews
MRI Software Interview Questions
3.7
 • 14 Interviews
View all

Travelyaari Reviews and Ratings

based on 15 reviews

3.2/5

Rating in categories

3.0

Skill development

3.1

Work-life balance

2.7

Salary

2.4

Job security

2.8

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 15 Reviews and Ratings
Software Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

UI/UX Designer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Travelyaari with

RedBus

4.1
Compare

Cogoport

2.9
Compare

Treebo Hotels

3.3
Compare

KrazyBee

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent