Upload Button Icon Add office photos

Filter interviews by

Tritech Data Engineer Interview Questions and Answers

Updated 29 Feb 2024

Tritech Data Engineer Interview Experiences

1 interview found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Feb 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 1. How spark process the code? 2. difference between repartition and coalesce. 3. How to connect sql server from databricks
  • Ans. 

    Spark processes code using DAG (Directed Acyclic Graph) which optimizes and executes tasks in parallel.

    • Spark processes code by creating a DAG of tasks based on transformations and actions in the code.

    • It optimizes the DAG by combining tasks and executing them in parallel to maximize efficiency.

    • Repartition increases or decreases the number of partitions in a DataFrame, while coalesce only decreases partitions without shu...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. 1. What is get meta data in adf. 2. how to copy multiple files in adf.
  • Ans. 

    Get meta data in ADF is used to retrieve information about datasets, tables, and columns in Azure Data Factory.

    • Get meta data in ADF can be used to understand the structure and properties of data sources.

    • It helps in designing data pipelines by providing insights into the data being processed.

    • Examples of meta data include column names, data types, and schema information.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. 1. what is your salary expectation. 2. How you manage the work load.

Interview Preparation Tips

Interview preparation tips for other job seekers - be honest.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding questions, Amrstrong Number, Reverse string

Round 2 - Group Discussion 

Group discussion, Any topic

Round 3 - Aptitude Test 

Aptitude test, Quantite

Round 4 - Technical 

(1 Question)

  • Q1. Explain oops, Inheritance, Polymorhism
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic OOP questions for python programming language

Round 2 - HR 

(2 Questions)

  • Q1. What's abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows users to focus on what an object does instead of how it does it

    • It helps in reducing complexity and improving efficiency in software development

    • Example: In object-oriented programming, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI
  • Q2. What's the difference between SQL and NoSQL database
  • Ans. 

    SQL databases are relational databases with structured data, while NoSQL databases are non-relational databases with flexible, unstructured data.

    • SQL databases use structured query language for defining and manipulating data, while NoSQL databases use different query languages or APIs.

    • SQL databases are table-based, with a predefined schema, while NoSQL databases are document, key-value, wide-column, or graph-based.

    • SQL d...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. Implement binary search algorithm
  • Ans. 

    Binary search algorithm efficiently finds the target value in a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the mid index and compare the target value with the value at mid.

    • If target is less than mid value, update high to mid-1; if greater, update low to mid+1.

    • Repeat until target is found or low is greater than high.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Brief Introduction and basic questions
  • Q2. Future plans and how am i going to achieve them

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was simple apptitude

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between private and protected
  • Ans. 

    Private members are accessible only within the same class, while protected members are accessible within the same class and its subclasses.

    • Private members can only be accessed within the same class

    • Protected members can be accessed within the same class and its subclasses

    • Private members are not inherited by subclasses

    • Protected members are inherited by subclasses

  • Answered by AI
  • Q2. Why we use nosql database
  • Ans. 

    NoSQL databases are used for scalability, flexibility, and handling unstructured data.

    • Scalability: NoSQL databases can easily scale horizontally to handle large amounts of data and high traffic.

    • Flexibility: NoSQL databases do not require a predefined schema, allowing for easy modifications and additions to data.

    • Handling unstructured data: NoSQL databases are well-suited for storing and querying unstructured data like d...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. General questions
  • Q2. About availability

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Kantar user image K VENKATA SAI DEEPAK

posted on 14 May 2024

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

I was interviewed in Apr 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basics of sql and some coding questions
  • Q2. Data structures
Round 2 - Technical 

(1 Question)

  • Q1. Putin arrays strings
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of android
  • Q2. MVVM, Clean Architecture
  • Q3. Jetpack compose
Round 2 - Technical 

(2 Questions)

  • Q1. Question on resume
  • Q2. LLD of sdk which i made in prev company
Round 3 - One-on-one 

(1 Question)

  • Q1. LLD, HLD, Questions on mistake I did in my working career and all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Merge sorted arrays
Round 2 - Technical 

(1 Question)

  • Q1. Checking cache using python
  • Ans. 

    Use Python's built-in 'functools' module to check cache for function results.

    • Import 'functools' module

    • Use 'lru_cache' decorator to cache function results

    • Specify 'maxsize' parameter to limit cache size

    • Use 'cache_info()' method to get cache statistics

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - basic python questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Multicontainer pod,difference between deployments and replicaset,scenario based questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. It was good and easy
Round 2 - HR 

(1 Question)

  • Q1. Its all about package discussion
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Just apptitude questions and simple grammar

Round 2 - One-on-one 

(2 Questions)

  • Q1. General Introduction And asked about the previous profile Data entry process
  • Q2. About yourself Data Entry work

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company and the management i have ever worked. Manager who’s not aware about the work. They said something in interview and align in different process. Even the designation is just for the name. It’s Data entry work

Tritech Interview FAQs

How many rounds are there in Tritech Data Engineer interview?
Tritech interview process usually has 3 rounds. The most common rounds in the Tritech interview process are Technical and HR.
What are the top questions asked in Tritech Data Engineer interview?

Some of the top questions asked at the Tritech Data Engineer interview -

  1. 1. How spark process the code? 2. difference between repartition and coalesce. ...read more
  2. 1. What is get meta data in adf. 2. how to copy multiple files in a...read more

Tell us how to improve this page.

Tritech Data Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Software Developer
5 salaries
unlock blur

₹3.6 L/yr - ₹7 L/yr

Software Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Accountant
4 salaries
unlock blur

₹3.2 L/yr - ₹3.2 L/yr

Quality Analyst
4 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Senior Consultant
4 salaries
unlock blur

₹4.5 L/yr - ₹40 L/yr

Explore more salaries
Compare Tritech with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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