Upload Button Icon Add office photos
Engaged Employer

i

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

Travclan Technology India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Travclan Technology India Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Travclan Technology India Interview Questions and Answers

View all 14 questions

Travclan Technology India Interview Experiences

Popular Designations

52 interviews found

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round consist of coding as well as mcq questions

  • Q1. 

    Minimum Cost to Destination

    You are given an NxM matrix consisting of '0's and '1's. A '1' signifies that the cell is accessible, whereas a '0' indicates that the cell is blocked. Your task is to compute ...

  • Ans. Backtracking

    Maintain a visited array and try to explore all the possibilities with the help of backtracking.

    1. Start with (0, 0) and mark it as visited and try to move in all 4 directions.
    2. Say at any point we are at (i, j) then the cost of reaching (x,y) will be the minimum of these four cases.
      1. Option 1 -  Left: cost of reaching from (i, j-1)
      2. Option 2 - Right: cost of reaching from (i, j+1)
      3. Option 3 - Up: 1 + cost of rea...
  • Answered Anonymously
  • Q2. 

    Maximum of All Subarrays of Size k

    Given an array of 'N' non-negative integers and an integer 'K', your task is to find the maximum elements for each subarray of size 'K'.

    Input:

    The first line contains...
  • Ans. Brute force approach
    • The Idea behind this brute force approach is to consider each subarray of size K by fixing a point i in the array and then consider all the points after it till we have considered K elements from the starting point i and finding the maximum element in it and then storing it.
    • Now, run a loop(say, loop variable i) till (N-K) elements of the array:
      • Run a nested loop(say, loop variable j) through the elem...
  • Answered Anonymously
Round 2 - Face to Face 

(3 Questions)

Round duration - 36 minutes
Round difficulty - Easy

  • Q1. 

    Convert Min Heap to Max Heap Problem Statement

    Given an array representation of a min-heap of size 'n', your task is to convert this array into a max-heap.

    Input:

    The first line of input contains an int...
  • Ans. Sorting Approach

    The main idea is that when an array is sorted in descending order it becomes max heap as for every ‘i’ from i=0 to n/2 it is greater than equal to arr[2*i+1] and arr[2*i+2].

    Space Complexity: O(1)Explanation:

    O(1)

     

    We are using constant space to solve this.

    Time Complexity: O(nlogn)Explanation:

    O(n*log(n)), where n is the size of the array.

     

    Sorting an array takes O(n*log(n)) time complexity.


    Pytho...
  • Answered Anonymously
  • Q2. 

    Sum Between Zeroes Problem Statement

    Given a singly linked list containing a series of integers separated by the integer '0', modify the list by merging nodes between two '0's into a single node. This mer...

  • Ans. Two Pointer Approach

    Let us initialize two pointers, newHead and newTail, with NULL (These will be the head and tail of the final list). Now traverse the given list. Ignore the first zero. Now, as you encounter non-zero nodes, add their values in a variable called ‘sum’. As soon as you encounter a node with data 0, change that node's value to ‘sum’, and

    1. If newHead is NULL, this node becomes the new head and tail of the l...
  • Answered Anonymously
  • Q3. 

    Snake and Ladder Problem Statement

    Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, f...

  • Ans. BFS

    We will use Breadth-First Search to find the shortest path from cellNumber 1 to cellNumber N*N.

    1. We will maintain a queue of cellNumber where the front of the queue will always contain a cell which can be reached by minimum dice throw from starting cell (cellNumber = 1).
    2. Create a minDiceThrow array of size N*N initialise it with the maximum value (INT_MAX)
    3. Start with pushing cellNumber 1 and updating minDiceThrow[1] = 0...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Trainee Technology in HyderabadEligibility criteriaNoTravClan interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Networking, Database Management System, Operating System, Time Complexity, Compiler design, Machine Learning and Artificial intelligence techniques , recursion with backtracking problems and also graph-related algorithms problemsTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : I practiced a lot of problems related to Data structures on the Coding ninjas platform and other coding platforms.
Tip 2 : If you are stuck somewhere in a problem and want to see reference, first, try to understand the algorithm and then move on to code. 
Tip 3 : Just see the algorithm that is how to approach first and don't try to understand from the code right off the bat, code has finer implementation variation that can be done on your own if you are clear with the algorithm. Also for big product companies, prepare enough problems of graphs and trees as these are the most important topics for interviews.

Application resume tips for other job seekers

Tip 1 : Mention a good level of projects in your resume, and also give a brief detail about each and every project.
Tip 2 : Have at least 1 or 2 good projects from which you know everything involved in the project.

Final outcome of the interviewSelected

Skills evaluated in this interview

Technical Trainee Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (5)

I applied via LinkedIn and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Three levels of selection process:- 1) GD round and Quantitative Aptitude Test (both were easy to clear) 2) Interview with HR 3) Interview with Co-founder.
  • Q2. What does the company do?
  • Q3. What are your goals in life ?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviews were easy to moderate. I was asked general questions about the company and about myself.

Operations Associate Interview Questions asked at other Companies

Q1. How do you get use to bulk of invoices comes at a time and how do you work on it
View answer (7)

Travclan Technology India Interview FAQs

How many rounds are there in Travclan Technology India interview?
Travclan Technology India interview process usually has 3-4 rounds. The most common rounds in the Travclan Technology India interview process are Aptitude Test, Group Discussion and One-on-one Round.
How to prepare for Travclan Technology India 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 Travclan Technology India. The most common topics and skills that interviewers at Travclan Technology India expect are B2B Sales, Client Relationship Management, Business Development, Field Sales and Key Account Management.
What are the top questions asked in Travclan Technology India interview?

Some of the top questions asked at the Travclan Technology India interview -

  1. If a traveller is not able to board the flight due to our mistake then what wil...read more
  2. If X is in north of Y and Y is in south of Q, and Q is in east of Dharambir. Th...read more
  3. Tell me the square root from 11 to 15..?? How is that relevant for job role..??...read more
How long is the Travclan Technology India interview process?

The duration of Travclan Technology India interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Travclan Technology India Interview Process

based on 57 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 772 Interviews
Razorpay Interview Questions
3.6
 • 149 Interviews
BCD Travel Interview Questions
4.3
 • 111 Interviews
Mobikwik Interview Questions
4.0
 • 47 Interviews
BillDesk Interview Questions
3.2
 • 14 Interviews
Instamojo Interview Questions
3.6
 • 7 Interviews
View all

Travclan Technology India Reviews and Ratings

based on 70 reviews

3.0/5

Rating in categories

3.2

Skill development

2.1

Work-life balance

3.5

Salary

2.6

Job security

2.9

Company culture

3.3

Promotions

2.7

Work satisfaction

Explore 70 Reviews and Ratings
Operations Associate
75 salaries
unlock blur

₹3.6 L/yr - ₹9.6 L/yr

Financial Associate
22 salaries
unlock blur

₹3.6 L/yr - ₹7.8 L/yr

Accounts Manager
22 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Business Development Associate
13 salaries
unlock blur

₹4.8 L/yr - ₹7.5 L/yr

Software Engineer
12 salaries
unlock blur

₹7 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Travclan Technology India with

Razorpay

3.6
Compare

Paytm

3.3
Compare

Cashfree Payments

3.5
Compare

Instamojo

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