Upload Button Icon Add office photos

Filter interviews by

Travstore Travel Management Interview Questions and Answers

Updated 7 Jan 2025

Travstore Travel Management Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

Grop Discussion on topic related to current HMPV Virus going on what if lockdown comes again

Round 2 - Aptitude Test 

Some travel questions

Round 3 - Assignment 

Make a pdf on travel to thailand with itinerary

Assistant Product Manager Interview Questions asked at other Companies

Q1. If you are the manager of the app, how will you create a metric system to keep track of progress?
View answer (1)

Jobs at Travstore Travel Management

View all

Interview questions from similar companies

Functional Testing Senior Consultant Interview Questions & Answers

Deloitte user image Anonymous

posted on 4 Feb 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - HR 

(2 Questions)

  • Q1. Current CTC, Expected CTC, Notice Period, Skill set
  • Q2. Open for Fixed term hire? Open for working from client location at Gurgaon? (3 days from office)
Round 2 - Technical 

(10 Questions)

  • Q1. Introduction, Current role and responsibilities
  • Q2. List out the achievements in current project, Tools used
  • Q3. Pilot vs Beta testing. How can newly developed functionality be tested via automation rather doing it manually?
  • Q4. Primary key vs Unique key in SQL, Query to find row having last id in sql
  • Q5. Explain Software Testing Life Cycle, Defect Life Cycle
  • Q6. What's the meaning of 303 status code in API? Put vs Delete method in API What is 3 point estimation technique in Agile?
  • Q7. What kind of links and labels can be tagged to a bug in jira?
  • Q8. Have you done shell scripting? What does grep, href commands do in unix?
  • Q9. As a lead, how would you resolve conflict with a team member? As a lead, if you are given plenty of tasks to be completed with in a limited time frame. What would be your approach in doing them?
  • Q10. Open for relocating to Bangalore and working from client's office? (with no relocation bonus) Open for working in night / rotational shift? (with no additional compensation) Open for working in long exten...

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a good experience. Some recruiters are very arrogant and have no respect for the people interviewing with them. They consider as themselves dummy kings, because they are working in Deloitte USI. I interacted with 4-5 recruiters for one opening (from Gurgaon / Hyderabad). One HR even said to me that I was not the only person interviewing with them, they have bunch of people to chose, also various other things were said in a very unprofessional and rude manner. She had no ethics of talking to an experienced resource, when I escalated this to the seniors, they immediately apologized for her behavior and I was then handled by another Senior HR

I applied via referral in Deloitte USI but to save their referral bonus (I guess), they rejected my profile on the portal and called me through Naukri.com. When I asked them the reason, they said its for a different profile them. however it was for the same one.
Also on their career site, it was not mentioned that role is of fixed term hire (for 2 years), but HR disclosed it later, during the conversation. (another discrepancy)

During my initial conversation, HR clearly said there won't be any night shifts and I would have to work from client's location in Gurgaon office. Although it is 2 year contractual role.
But during my technical interview, the person clearly said to me that I would have to relocate to Bangalore for working from client's secured ODC in office. Also there would be rotational/ night shifts (without any extra pay). Basically they were looking for someone who would devote his 24X7 time to the company for a minimal salary and does not demand for work life balance or weekends off

Neither the HR nor the interviewer opened their web camera during the video call. But HR kept asking me to keep my camera open, even during the waiting time
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(16 Questions)

  • Q1. What are custom hooks in React, and what are their use cases? Additionally, can you provide an example of a custom hook that performs an API call and utilizes the retrieved data?
  • Ans. 

    Custom hooks in React are reusable functions that allow you to extract component logic into separate functions for better code organization and reusability.

    • Custom hooks are created using the 'use' prefix and can be used to share logic between components.

    • Use cases for custom hooks include fetching data from an API, handling form state, managing local storage, and more.

    • Example of a custom hook for API call: const useFetc...

  • Answered by AI
  • Q2. What is the difference between useMemo and useCallback in React?
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to memoize a value and recompute it only when its dependencies change.

    • useCallback is used to memoize a callback function and prevent unnecessary re-renders.

    • Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used to memoize an event handler function.

  • Answered by AI
  • Q3. What is the difference between class-based components and functional components in React?
  • Ans. 

    Class-based components use ES6 classes and have lifecycle methods, while functional components are simpler and use functions.

    • Class-based components use ES6 classes to create components, while functional components are created using functions.

    • Class-based components have lifecycle methods like componentDidMount and componentDidUpdate, while functional components do not.

    • Functional components are simpler and more lightweig...

  • Answered by AI
  • Q4. How can you implement the lifecycle of a React component in a functional component?
  • Ans. 

    Implementing the lifecycle of a React component in a functional component

    • Use the useEffect hook to replicate lifecycle methods like componentDidMount, componentDidUpdate, and componentWillUnmount

    • Pass an empty array as the second argument to useEffect to mimic componentDidMount

    • Pass a variable or state as the second argument to useEffect to mimic componentDidUpdate

    • Return a cleanup function inside useEffect to mimic compo

  • Answered by AI
  • Q5. What are the various state management techniques available in React?
  • Ans. 

    Various state management techniques in React include Context API, Redux, and local state.

    • Context API: React's built-in solution for passing data through the component tree without having to pass props down manually at every level.

    • Redux: A popular state management library for React applications, allowing for a centralized store to manage application state.

    • Local state: Managing state within individual components using us

  • Answered by AI
  • Q6. What is the architecture of Redux, and what purposes do middlewares serve within it?
  • Ans. 

    Redux is a predictable state container for JavaScript apps. Middlewares are functions that intercept actions before they reach the reducer.

    • Redux follows a unidirectional data flow architecture.

    • Middlewares in Redux are functions that can intercept, modify, or dispatch actions.

    • Common use cases for middlewares include logging, asynchronous API calls, and handling side effects.

    • Examples of popular Redux middlewares are Redu...

  • Answered by AI
  • Q7. What is hoisting in JavaScript?
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q8. What is event bubbling in JavaScript?
  • Ans. 

    Event bubbling is the propagation of events from the target element up through its ancestors in the DOM tree.

    • Events triggered on a child element will 'bubble up' and trigger on parent elements.

    • Event listeners can be attached to parent elements to handle events from multiple child elements.

    • Stopping event propagation can be done using event.stopPropagation() or event.stopImmediatePropagation().

  • Answered by AI
  • Q9. What are block scope and function scope in JavaScript?
  • Ans. 

    Block scope and function scope are two types of scopes in JavaScript that determine the visibility and accessibility of variables.

    • Block scope refers to the visibility of variables within a block of code enclosed by curly braces. Variables declared with 'let' and 'const' have block scope.

    • Function scope refers to the visibility of variables within a function. Variables declared with 'var' have function scope.

    • Variables de...

  • Answered by AI
  • Q10. Have you had experience working with semantic tags in HTML?
  • Ans. 

    Yes, I have experience working with semantic tags in HTML.

    • Used semantic tags like <header>, <nav>, <main>, <section>, <article>, <aside>, <footer> for better structure and SEO.

    • Understand the importance of using semantic tags for accessibility and search engine optimization.

    • Semantic tags help in organizing content and making it more readable for developers and browsers.

  • Answered by AI
  • Q11. What are the various methods for creating an object in JavaScript?
  • Ans. 

    Various methods for creating an object in JavaScript include object literals, constructor functions, ES6 classes, and Object.create() method.

    • Object literals: var obj = { key: value };

    • Constructor functions: function ObjectName() { this.key = value; } var obj = new ObjectName();

    • ES6 classes: class ClassName { constructor() { this.key = value; } } var obj = new ClassName();

    • Object.create() method: var obj = Object.create(pr

  • Answered by AI
  • Q12. What are the differences between shallow copy and deep copy in JavaScript?
  • Ans. 

    Shallow copy only copies the references of nested objects, while deep copy creates new copies of nested objects.

    • Shallow copy creates a new object but does not create copies of nested objects, only copies their references.

    • Deep copy creates a new object and also creates new copies of all nested objects.

    • Shallow copy can be achieved using Object.assign() or spread operator, while deep copy can be achieved using JSON.parse(

  • Answered by AI
  • Q13. What will be the output of the following JavaScript code fragment: `const a; function test() { console.log(a); }; test();`?
  • Ans. 

    The code will throw an error because 'a' is declared but not initialized.

    • The code will result in a ReferenceError because 'a' is declared but not assigned a value.

    • Variables declared with 'const' must be initialized at the time of declaration.

    • Initializing 'a' with a value before calling test() will prevent the error.

  • Answered by AI
  • Q14. How can you use CSS to arrange elements in a row and column layout?
  • Ans. 

    CSS can be used to arrange elements in a row and column layout using flexbox or grid layout properties.

    • Use display: flex; for a row layout and display: flex; flex-direction: column; for a column layout

    • Use justify-content and align-items properties to align items in the main axis and cross axis respectively

    • For grid layout, use display: grid; and grid-template-columns or grid-template-rows to define the layout

  • Answered by AI
  • Q15. Have you utilized CSS preprocessors, and if so, which ones?
  • Ans. 

    Yes, I have utilized CSS preprocessors such as SASS and LESS.

    • I have experience using SASS to streamline my CSS workflow by utilizing variables, mixins, and nesting.

    • I have also worked with LESS to improve code organization and maintainability through features like variables and functions.

  • Answered by AI
  • Q16. If I have assigned different colors to an ID and a class and applied both to the same element, which color will be applied based on CSS specificity precedence?
  • Ans. 

    The color applied will be based on the specificity of the selector, with ID having higher specificity than class.

    • ID has higher specificity than class in CSS

    • Color applied will be based on the selector with higher specificity

    • Example: If ID selector has color red and class selector has color blue, the color applied will be red

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Senior Software Engineer interview:
  • Javascript
  • React.Js
  • HTML
  • CSS
Interview preparation tips for other job seekers - Possessing a deep understanding of JavaScript and React is essential. Interviewers may engage in mind games with candidates; therefore, we should remain calm and focused solely on the questions. Additionally, we need to be confident in our answers; otherwise, they may respond with doubt, asking, "Is that so?"

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(6 Questions)

  • Q1. Technician Round
  • Q2. Ac technician round
  • Q3. Washing machine round
  • Q4. LED repair installation round
  • Q5. Microwave installation and round
  • Q6. Disaster installation round

Interview Preparation Tips

Interview preparation tips for other job seekers - I ma engineer reliance resq retail
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Process planning refers to the methodical approach of determining the best possible way to manufacture a product or deliver a service by considering various aspects such as resources, timelines, and methodologies involved in production or execution.

Round 2 - One-on-one 

(5 Questions)

  • Q1. Explain about previous process
  • Ans. 

    Implemented a new chemical process to increase efficiency and reduce waste.

    • Researched and analyzed current process to identify areas for improvement

    • Designed and tested new process using simulation software

    • Collaborated with production team to implement changes and monitor results

    • Achieved 20% increase in production output and 15% reduction in waste

    • Continuously monitored and optimized process for further improvements

  • Answered by AI
  • Q2. Explain about my work experience
  • Q3. Explain about my work standard
  • Q4. Explain about my managing method
  • Ans. 

    I utilize a combination of project management tools and communication strategies to effectively manage my team and projects.

    • I prioritize tasks based on deadlines and importance

    • I regularly communicate with team members to ensure everyone is on the same page

    • I use project management software such as Trello or Asana to track progress and assign tasks

    • I adapt my management style to fit the needs and preferences of individual

  • Answered by AI
  • Q5. Explain about my working style
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
-

I was interviewed in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Show architecture of multiple microservice in MS Paint..
  • Ans. 

    Architecture of multiple microservices in MS Paint

    • Draw separate boxes for each microservice

    • Connect the boxes with lines to show communication

    • Label each box with the name of the microservice

    • Include any databases or external services used by the microservices

  • Answered by AI
  • Q2. Why we use dependency injection, draw it inms paint...,first told me give real life example and when I gave the answer he cut me off again..

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewers was so rude.. it's like he was not in the mood of taking an interview.. wasn't giving me chance to talk, didn't hear my answers and keep cutting me back.. forcing me to show the flow in MS paint.. How one can show the flow of "why we use dependency injection" in MS paint.. when I showed like we will have interface then classes and to connect them we will use dependency he cut me off again and said don't explain just draw... one of the worst interview of my life.. I actually lost respect for the whole EY organization after it... compare to other big 4 interviewers they are so polite and ask normal questions.. Very bad experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Self introduction and brief explanation about privious work
Round 2 - Technical 

(2 Questions)

  • Q1. About privious process and company
  • Q2. What is saction, types of saction, what ia pep, meaning of reg flag, about cip, edd, saction country
  • Ans. 

    Sactions are penalties imposed on individuals or entities for violating laws or regulations. PEP refers to politically exposed persons. Red flags indicate potential suspicious activity. CIP stands for customer identification program. EDD is enhanced due diligence.

    • Sanctions are penalties imposed on individuals or entities for violating laws or regulations

    • Types of sanctions include financial sanctions, trade sanctions, a...

  • Answered by AI
Round 3 - Aptitude Test 

Relationship, reasoning and apti

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - HR 

(6 Questions)

  • Q1. What. about . this. Company
  • Q2. Sir. It. a. fast. grouting. Company. and. will.. learn. More.. new. technology. . In.. future
  • Q3. So. In. my. Point. Of. View. definitely. Your.. Company.will.. be. One. Of. the.. leading. Companies. In. Your country
  • Q4. It. is. fast. growing. company. and.. I Will. learn. more. new.. Works. In. future. I. know. It. good. facility
  • Q5. It. Is. a. best platform. to. Start. my. Career. as. a. fresher. and. it's. helpful. In. any. Professional. growth
  • Q6. This. Is. my career. sterling. time. I. think. your company. Is. a good. platform. fur. me. to. Improve. myself
Round 2 - HR 

(1 Question)

  • Q1. What. about. this. Company
Round 3 - One-on-one 

(1 Question)

  • Q1. What. about. this. Company

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidates can. learn. More. about. the. Company. Culture values
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Self introduction
Round 2 - Technical 

(1 Question)

  • Q1. Method of operation
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Types of soup, types of salad.
  • Q2. Galley break fast chif

Interview Preparation Tips

Interview preparation tips for other job seekers - All staff friendly working,

Travstore Travel Management Interview FAQs

How many rounds are there in Travstore Travel Management interview?
Travstore Travel Management interview process usually has 3 rounds. The most common rounds in the Travstore Travel Management interview process are Group Discussion, Aptitude Test and Assignment.
How to prepare for Travstore Travel Management 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 Travstore Travel Management. The most common topics and skills that interviewers at Travstore Travel Management expect are Quotation, Accounts Payable, Accounts Receivable, Accounts Reconciliation and B2B Sales.

Tell us how to improve this page.

Travstore Travel Management Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Travstore Travel Management Reviews and Ratings

based on 11 reviews

4.8/5

Rating in categories

4.6

Skill development

4.6

Work-life balance

4.5

Salary

4.7

Job security

4.5

Company culture

4.6

Promotions

4.4

Work satisfaction

Explore 11 Reviews and Ratings
Accountant

Mumbai Suburban

2-7 Yrs

₹ 2.5-5 LPA

Explore more jobs
Executive Accountant
6 salaries
unlock blur

₹2.4 L/yr - ₹3.6 L/yr

Operations Executive
5 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Product Executive
4 salaries
unlock blur

₹2.6 L/yr - ₹6 L/yr

Reservations Executive
3 salaries
unlock blur

₹2.8 L/yr - ₹4.3 L/yr

Senior Travel Consultant
3 salaries
unlock blur

₹3.6 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Travstore Travel Management with

Carnival Cruise Lines

4.3
Compare

Royal Caribbean International

4.4
Compare

Smaaash Entertainment

3.7
Compare

Nielsen Sports

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