Upload Button Icon Add office photos

Filter interviews by

Tbo Holidays SQL Engineer Interview Questions and Answers

Updated 15 Sep 2021

Tbo Holidays SQL Engineer Interview Experiences

1 interview found

SQL Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Types of Joins, Stored Procedures, Trigger and it's type
  • Ans. 

    Types of Joins, Stored Procedures, Trigger and it's type

    • Types of Joins: Inner Join, Left Join, Right Join, Full Outer Join

    • Stored Procedures: Precompiled SQL statements, stored in database, reusable

    • Trigger: Special type of stored procedure, executed automatically on specific events

    • Types of Triggers: DML Trigger, DDL Trigger, Logon Trigger, CLR Trigger

  • Answered by AI
  • Q2. Absolute functions Rank,Dense Rank,Row_Number, Partition by
  • Q3. Difference between row_number and row_id
  • Ans. 

    row_number assigns a unique number to each row in a result set, while row_id is a unique identifier assigned to each row in a table.

    • row_number is a function used in SQL to assign a unique number to each row in a result set

    • row_id is a unique identifier assigned to each row in a table

    • row_number is used for ranking and pagination purposes

    • row_id is used for identifying a specific row in a table

    • row_number is not persistent ...

  • Answered by AI
  • Q4. Basic questions like difference between delete truncate , natural join - inner join

Interview Preparation Tips

Interview preparation tips for other job seekers - Most important thing is the confidence all we have to do is to prove the interviewer that we are a good fit for their required position. Most of us are not flawless so we need to show that we are keen to learn the relevant technology and will be an asset for their company after few months.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. .net questions - routing in asp.net MVC ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing . Prepare well for interview on .Net technology stack

I applied via Campus Placement and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good

Round 2 - Technical 

(1 Question)

  • Q1. Basic question from C++.Some questions from Data structure and computer architecture.

Interview Preparation Tips

Topics to prepare for TCS Software Engineer interview:
  • C++
Interview preparation tips for other job seekers - Prepare well. Aptitude is not very easy so you have to prepare well.

I was interviewed before Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Easy

It was an mcq + coding round. There were aptitude and ouput based question in mcq. And coding questions were easy

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an array of integers from 0 to (N-2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number with a frequency greater than 1 as the duplicate number.

    • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

  • Answered by AI
  • Q2. 

    Reverse String Operations Problem Statement

    You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A...

  • Ans. 

    Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

    • Iterate through the array of indices and reverse the substrings accordingly

    • Ensure the range specified by each index is non-empty

    • Return the final string after all operations are completed

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

It was technical + hr round. there were 2 people as interviewer. They stated from intro and asked some basic puzzles and hr questions. After that they asked about my projects, technologies and some ds algo and dbms questions.

Interview Preparation Tips

Eligibility criterianaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude
Tip 2 : Focus on practicing coding
Tip 3 : Learn from mistakes

Application resume tips for other job seekers

Tip 1 : Mention some projects that you have done
Tip 2 : Try to have skills that are required for the role

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Mostly related to the technology I applied for. Some coding related questions. Questions related to our expertise to test us.

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of c, matrix multiplication, sql,he said to write group by query and swapping program without using third variable

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with basics of the mentioned languages in the resume.

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. String manipulation , collections, framework understanding

Interview Preparation Tips

Interview preparation tips for other job seekers - For QA Automation - Basics of OOPS concept,collections,strings are enough

I applied via Company Website and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. By Rajkumar Bharathi, I stay at Trichy
  • Q2. I have completed my B.E from kalasalingam university in 2020, with a score of 6.33
  • Q3. I am a fresher need this jobs

Interview Preparation Tips

Interview preparation tips for other job seekers - Dress for the job or company

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Hard

All mcqs should answer with in time limit should have a lot of practice to solve in exam

  • Q1. 

    Water Jug Problem Statement

    You have two water jugs with capacities X and Y liters respectively, both initially empty. You also have an infinite water supply. The goal is to determine if it is possible to...

  • Ans. 

    The Water Jug Problem involves determining if a specific amount of water can be measured using two jugs of different capacities.

    • Start by considering the constraints and limitations of the problem.

    • Think about how the operations allowed can be used to reach the target measurement.

    • Consider different scenarios and test cases to come up with a solution.

    • Implement a function that takes the capacities of the jugs and the targe...

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Easy and just basic questions very easy round

  • Q1. 

    Matrix Multiplication Task

    Given two sparse matrices MAT1 and MAT2 of integers with dimensions 'N' x 'M' and 'M' x 'P' respectively, the goal is to determine the resulting matrix produced by their multipl...

  • Ans. 

    Implement a function to multiply two sparse matrices and return the resulting matrix.

    • Create a function that takes two sparse matrices as input and returns the resulting matrix after multiplication.

    • Iterate through the non-zero elements of the matrices to perform the multiplication efficiently.

    • Ensure to handle the sparse nature of the matrices to optimize the multiplication process.

    • Consider the constraints provided to en...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 6 cgpaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Dql, Data structures, Java, Operating system, Data scienceTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : preapre core subjects 
Tip 2 : be confident and answer clearly
Tip 3 : be strong with projects

Application resume tips for other job seekers

Tip 1 : good projects in ml and ai
Tip 2 : practical experience

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement 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. Asked basic HR question as to why i want to join, what am i looking for , ever faced any harships in my internship.
  • Q2. Why did i puckup coding and biggest regret, weakness, strengths.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and answer honestly and keep it simple. They may ask about your projects as well.

Tbo Holidays Interview FAQs

How to prepare for Tbo Holidays SQL 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 Tbo Holidays. The most common topics and skills that interviewers at Tbo Holidays expect are .Net, C#, Db2, MySQL and RDBMS.
What are the top questions asked in Tbo Holidays SQL Engineer interview?

Some of the top questions asked at the Tbo Holidays SQL Engineer interview -

  1. Types of Joins, Stored Procedures, Trigger and it's t...read more
  2. Difference between row_number and row...read more
  3. Basic questions like difference between delete truncate , natural join - inner ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

Tbo Holidays SQL Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Operations Executive
48 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive Operations
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Tbo Holidays with

MakeMyTrip

3.6
Compare

Yatra

3.4
Compare

Cleartrip

3.4
Compare

Goibibo

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