Upload Button Icon Add office photos
Engaged Employer

i

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

Tripjack Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tripjack Sdet Automation Test Engineer Interview Questions and Answers

Updated 27 Sep 2024

Tripjack Sdet Automation Test Engineer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

I had verbal quant and pseudocode questions for first aptitude round

Round 2 - Coding Test 

The questions are from linked list and basics of trees

Round 3 - Technical 

(2 Questions)

  • Q1. It was one to on interviwew reverse a linked list
  • Q2. How would ypu explain the traversal of graphs
  • Ans. 

    Traversal of graphs involves visiting each vertex and edge in a graph in a systematic way.

    • Traversal can be done using algorithms like Depth First Search (DFS) or Breadth First Search (BFS).

    • DFS explores as far as possible along each branch before backtracking, while BFS explores neighbors before moving on.

    • Traversal can be used to find paths, cycles, connected components, or perform other graph operations.

    • Example: Traver...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Instahyre and was interviewed in Sep 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. FInd the max triplets such that i
  • Ans. 

    Find the max triplets such that i

    • Sort the array in ascending order

    • Iterate over the array and keep track of the maximum triplet

    • Return the maximum triplet

  • Answered by AI
  • Q2. Find the duplicate record in MySQL table
  • Ans. 

    Finding duplicate records in MySQL table

    • Use GROUP BY and HAVING clause to group and filter duplicate records

    • SELECT statement with COUNT(*) function can be used to count the number of occurrences

    • UNIQUE constraint can be added to the table to prevent duplicates

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Headout Senior Software Engineer interview:
  • Data Structures
  • Database
Interview preparation tips for other job seekers - Practice mediim level DS Algo from leetcode and also practices MySql question as well.

Skills evaluated in this interview

I applied via Referral and was interviewed before Nov 2021. 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 - HR 

(2 Questions)

  • Q1. What is the reason to leave your previous organisation
  • Q2. Why are you keen to join Riya?
Round 3 - Technical 

(1 Question)

  • Q1. What is the first step you have to take as Business analyst when a project is offered?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if an answer is unknown it’s advisable to say no rather than beating around the bush
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jan 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is customer service according to you?
  • Ans. 

    Customer service is the assistance and support provided to customers before, during, and after a purchase.

    • Customer service involves actively listening to customers' needs and concerns.

    • It includes providing timely and accurate information about products or services.

    • Customer service also involves resolving customer issues and complaints effectively.

    • Building strong relationships with customers to ensure satisfaction and l...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are looking for a growth job then I would recommend to work as an BLS International family members, it helps you in variety ways of growing the work culture, friends zone, working environment, all the leaders were frankly and leading with professionally with lots of help from scratch... I really can't thank enough neither I could not take an opportunity to say goodbye to near and dear one's Thank you BLS international family members for molding me and making me for who I am today
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - Assignment 

Numbers and patterns

I appeared for an interview before Mar 2021.

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 - One-on-one 

(1 Question)

  • Q1. Self-introduction and basic knowledge of accounting terms

Interview Preparation Tips

Interview preparation tips for other job seekers - Be active and read thoroughly about the organization

I applied via Approached by Company and was interviewed before Nov 2021. There were 2 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 - HR 

(2 Questions)

  • Q1. 1) Details to travel related work experience in past
  • Q2. 2) Why do you want to join Thomas Cook

Interview Preparation Tips

Interview preparation tips for other job seekers - They hire more on actual work than tag of past company

Interview Questionnaire 

1 Question

  • Q1. Basic Oops , SQL , aap.net

Interview Preparation Tips

Skill Tips: To crack Yatra interview Java, Data Structures and Algorithms concepts should be clear.
Skills: Java, Data structures, Algorithm
College Name: na

Interview Preparation Tips

Round: Test
Experience: 1. Rotate a matrix by 90 degrees clockwise.( He asked me have you heard of question.I said Yes.Then he asked me to code)2. Find vertical sum of nodes present in same vertical line in binary tree. ( He again asked me have you heard of question. I have heard it but didn’t remember the approach. It took some time and then I started telling my approach.He aasked me to write code and question regarding get sums from left to right , for which I made use of linked hashmap)
Overall It was very cool for me
Total Questions: 2

Round: Test
Experience: 1.Reverse K blocks of nodes in linked list.There are two interviewers this time, probably, guy was senior he was asking me question.He was very particular in coding. Checked every edge case.and asked me evrything.Initially I told the approach and then started coding.2.Find min in stack in O(1)Pretty straightforward written code.Again he checked all edge cases with my code.3. Then asked about counting sort and its code.4. And a simple question on array sorting.

Round: HR Interview
Experience: I thought this was last round as they have said like.She asked me about my strengths and challenges I faced.How I overcame through it1.Basic question on oops concepts.(runtime polymorphism).
2.Design tables for getting all employees under manager. I screwed it little bit.But some how I got answer which I was not satisfied as well.I was expecting result either yes/no.But they called me for another round of interview may be because of my expected salary which was high compared to my previous.

Round: Technical Interview
Experience: 1.Given “aaabbbccc” it should return “a3b3c3″ in place. Initially I explained brute force approach then he said array has 2n space.I was able to remember approach for quicksort and started explaining after which I grew confident on it.He was satisfied.Questions on time complexity of algo and space complexity discussions.2.Again a question on OOPs.This time I was completely wrong in answering it.I thought interview with yatra was closing for me.He was not satisified much with this.Luckily, there was another round with manager.

Round: Other Interview
Experience: 1.He asked me to find words which are having particular pattern.Then I said it was KMP algo. Can I explain it ?? I started explaining approach, may be he was busy with something, he asked me to write pseudo code.He left the room for 15 mins then he came back I had almost completed the code, which he was satisified.Some basic questions on spring ( my previous work was related to it). Then my expected salary and my position If I got selected in yatra were discussed.

College Name: NA

Tripjack Interview FAQs

How many rounds are there in Tripjack Sdet Automation Test Engineer interview?
Tripjack interview process usually has 3 rounds. The most common rounds in the Tripjack interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Tripjack Sdet Automation Test Engineer interview?

Some of the top questions asked at the Tripjack Sdet Automation Test Engineer interview -

  1. how would ypu explain the traversal of gra...read more
  2. it was one to on interviwew reverse a linked l...read more

Tell us how to improve this page.

Tripjack Sdet Automation Test Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

BCD Travel Interview Questions
4.3
 • 112 Interviews
Thomas Cook Interview Questions
3.8
 • 44 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Headout Interview Questions
4.0
 • 11 Interviews
Riya Travel Interview Questions
3.6
 • 10 Interviews
View all

Fast track your campus placements

View all

Tripjack Sdet Automation Test Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

2.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Executive Accountant
33 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Senior Travel Consultant
29 salaries
unlock blur

₹3.4 L/yr - ₹5.7 L/yr

Travel Consultant
19 salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

Software Developer
15 salaries
unlock blur

₹8 L/yr - ₹12 L/yr

Senior Executive
9 salaries
unlock blur

₹3.3 L/yr - ₹6.1 L/yr

Explore more salaries
Compare Tripjack with

Thomas Cook

3.8
Compare

Yatra

3.4
Compare

Riya Travel

3.6
Compare

BCD Travel

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