Upload Button Icon Add office photos

Tredence

Compare button icon Compare button icon Compare

Filter interviews by

Tredence Interview Questions and Answers

Updated 27 Jun 2025
Popular Designations

Tredence Interview Experiences

137 interviews found

Consultant Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Related to python programming
  • Q2. Data science question

Data Engineer Interview Questions & Answers

user image Vinay Gundam

posted on 16 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

1 good coding question and 33 mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. Easy questions are asked
  • Q2. Like create a database of the collages composes of students and professors
  • Ans. 

    Create a database to store information about colleges, students, and professors.

    • Create tables for colleges, students, and professors

    • Include columns for relevant information such as name, ID, courses, etc.

    • Establish relationships between the tables using foreign keys

    • Use SQL queries to insert, update, and retrieve data

    • Consider normalization to avoid data redundancy

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Some hr questions
  • Q2. Project discussions
Round 4 - HR 

(1 Question)

  • Q1. Hr questions about family
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Use lambda function in a python code.
  • Ans. 

    Lambda functions are anonymous functions in Python that can have any number of arguments but only one expression.

    • Lambda functions are defined using the lambda keyword.

    • They are commonly used with functions like map(), filter(), and reduce().

    • Example: double = lambda x: x * 2

  • Answered by AI
  • Q2. Define precision, recall and f1 score.
  • Ans. 

    Precision, recall, and F1 score are metrics used to evaluate the performance of classification models.

    • Precision is the ratio of correctly predicted positive observations to the total predicted positive observations.

    • Recall is the ratio of correctly predicted positive observations to the all observations in actual class.

    • F1 score is the harmonic mean of precision and recall, providing a balance between the two metrics.

    • Pre...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is the significance of elbow curve in clustering?
  • Ans. 

    Elbow curve helps in determining the optimal number of clusters in a dataset.

    • Elbow curve is a plot of the number of clusters against the within-cluster sum of squares (WCSS).

    • The point where the rate of decrease of WCSS sharply changes is considered as the optimal number of clusters.

    • It helps in finding the balance between having too few or too many clusters.

    • For example, if the elbow point is at 3 clusters, it suggests t...

  • Answered by AI
  • Q2. What is the significance of support, confidence and lift in market basket analysis?
  • Ans. 

    Support, confidence, and lift are key metrics in market basket analysis to identify relationships between items in a transaction.

    • Support measures how frequently an itemset appears in the dataset.

    • Confidence measures the likelihood that an item B is purchased when item A is purchased.

    • Lift measures how much more likely item B is purchased when item A is purchased compared to when item B is purchased independently of item ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume and prepare questions based on that

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is data bricks
  • Ans. 

    Data bricks is a unified analytics platform that provides a collaborative environment for data scientists, engineers, and analysts.

    • Data bricks simplifies the process of building data pipelines and training machine learning models.

    • It allows for easy integration with various data sources and tools, such as Apache Spark and Delta Lake.

    • Data bricks provides a scalable and secure platform for processing big data and running ...

  • Answered by AI
  • Q2. How do you optimize your code?
  • Ans. 

    Optimizing code involves identifying bottlenecks, improving algorithms, using efficient data structures, and minimizing resource usage.

    • Identify and eliminate bottlenecks in the code by profiling and analyzing performance.

    • Improve algorithms by using more efficient techniques and data structures.

    • Use appropriate data structures like hash maps, sets, and arrays to optimize memory usage and access times.

    • Minimize resource us...

  • Answered by AI
  • Q3. What is SQL window function?
  • Ans. 

    SQL window function is used to perform calculations across a set of table rows related to the current row.

    • Window functions operate on a set of rows related to the current row

    • They can be used to calculate running totals, moving averages, rank, etc.

    • Examples include ROW_NUMBER(), RANK(), SUM() OVER(), etc.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations?
  • Q2. When can you join
  • Ans. 

    I can join immediately or at a mutually convenient date, depending on your needs and my current commitments.

    • I am available to start immediately if needed.

    • If you prefer a specific start date, I can accommodate that as well.

    • I can discuss my current commitments to find a suitable start time.

    • For example, if you need someone to start within a week, I can make that work.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

You will be getting questions on the tech stack you have experience with, in depth questions on Node js and React js, real time challenges faced, two coding questions (1 easy and 1 medium)

Round 2 - Coding Test 

F2f round for about 1.5 hrs, you be given a task to create a functionality using frontend tech stack you have chosen, more coding questions medium level, framework related ij depth questions

Round 3 - Behavioral 

(2 Questions)

  • Q1. Previous experience and questions related to that
  • Q2. More questions on how to approach a problem
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to handle missing values
  • Ans. 

    Handle missing values by imputation, deletion, or using algorithms that can handle missing data.

    • Impute missing values using mean, median, mode, or predictive modeling

    • Delete rows or columns with missing values if they are insignificant

    • Use algorithms like XGBoost, Random Forest, or LightGBM that can handle missing data

  • Answered by AI
  • Q2. Linear equations model metrics
Round 2 - One-on-one 

(2 Questions)

  • Q1. Precession vs recall?
  • Ans. 

    Precision measures the accuracy of positive predictions, while recall measures the ability to find all positive instances.

    • Precision is the ratio of correctly predicted positive observations to the total predicted positives.

    • Recall is the ratio of correctly predicted positive observations to all actual positives.

    • Precision is important when the cost of false positives is high, while recall is important when the cost of fa...

  • Answered by AI
  • Q2. Clustering evaluation metrics

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. 1. asked about CDC and CDT difference 2. Transient table Vs temp table 3. SCD type 2 & Type 3 diff 4. A window function based question to found the latest updated designations on employee table on basi...
  • Q2. Rest questions were on basis of Azure Databricks , Deltalake , ADF on basis of experience
Are these interview questions helpful?

Data Analyst Interview Questions & Answers

user image Sathish Kumar

posted on 6 Jan 2025

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

(1 Question)

  • Q1. What is joins and types?

Data Analyst Interview Questions & Answers

user image Archita Ravi

posted on 11 Jun 2025

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What is an inner join in the context of database management?
  • Ans. 

    An inner join combines rows from two or more tables based on a related column, returning only matching records.

    • An inner join retrieves records that have matching values in both tables.

    • Example: If Table A has IDs 1, 2, 3 and Table B has IDs 2, 3, 4, an inner join on ID returns rows with IDs 2 and 3.

    • It is commonly used in SQL queries to filter data from multiple tables.

    • Syntax in SQL: SELECT * FROM TableA INNER JOIN Table...

  • Answered by AI
  • Q2. What is Madalian architecture?
  • Ans. 

    Madalain architecture is a design framework for scalable and efficient data processing systems.

    • Focuses on modularity and scalability in data systems.

    • Utilizes microservices for independent data processing tasks.

    • Supports real-time data processing and analytics.

    • Example: Using Madalian architecture in a healthcare app for patient data analysis.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The first round was mix of apti and coding

Round 2 - Technical 

(2 Questions)

  • Q1. What is deadlocks?
  • Ans. 

    Deadlocks occur when two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlocks happen in multitasking environments where processes compete for resources.

    • Four conditions must hold for a deadlock to occur: mutual exclusion, hold and wait, no preemption, and circular wait.

    • Example: Process A holds Resource 1 and waits for Resource 2, while Process B holds Resource 2 a...

  • Answered by AI
  • Q2. A puzzles from gfg

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Tredence?
Ask anonymously on communities.

Tredence Interview FAQs

How many rounds are there in Tredence interview?
Tredence interview process usually has 2-3 rounds. The most common rounds in the Tredence interview process are Technical, One-on-one Round and HR.
How to prepare for Tredence 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 Tredence. The most common topics and skills that interviewers at Tredence expect are Python, Machine Learning, SQL, Data Management and Data Mining.
What are the top questions asked in Tredence interview?

Some of the top questions asked at the Tredence interview -

  1. Puzzle: Given two hour glass, one measuring 4 mins and the other 7 mins, how to...read more
  2. public static void getsum(int a,int b){System.out.println("a b method");}public...read more
  3. Guesstimate - How will you estimate the number of bridal dresses sold in a year...read more
How long is the Tredence interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 109 interview experiences

Difficulty level

Easy 22%
Moderate 74%
Hard 3%

Duration

Less than 2 weeks 82%
2-4 weeks 11%
4-6 weeks 5%
6-8 weeks 2%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 370 Interviews
CitiusTech Interview Questions
3.3
 • 286 Interviews
NeoSOFT Interview Questions
3.6
 • 279 Interviews
Altimetrik Interview Questions
3.7
 • 239 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 210 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
View all

Tredence Reviews and Ratings

based on 570 reviews

3.5/5

Rating in categories

3.8

Skill development

3.1

Work-life balance

3.3

Salary

3.5

Job security

3.5

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 570 Reviews and Ratings
Data Science Manager / Senior Manager

Pune

7-10 Yrs

Not Disclosed

Manager Dev Ops

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Senior Dev Ops Engineer

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Explore more jobs
Associate Manager
440 salaries
unlock blur

₹18 L/yr - ₹31 L/yr

Consultant
427 salaries
unlock blur

₹8.7 L/yr - ₹26.8 L/yr

Data Engineer
302 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Analyst
292 salaries
unlock blur

₹6 L/yr - ₹10.4 L/yr

Senior Business Analyst
250 salaries
unlock blur

₹6.5 L/yr - ₹17 L/yr

Explore more salaries
Compare Tredence with

ITC Infotech

3.7
Compare

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare

Xoriant

4.1
Compare
write
Share an Interview