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

93 Interview questions

A Data Analyst was asked 3w ago
Q. 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 ...

View all Data Analyst interview questions
An Associate Manager was asked 2mo ago
Q. How do you perform container orchestration using Docker?
Ans. 

Container orchestration with Docker automates deployment, scaling, and management of containerized applications.

  • Docker Swarm: Native clustering and orchestration tool for Docker, allowing easy management of multiple containers.

  • Kubernetes: A powerful orchestration platform that manages containerized applications across a cluster of machines.

  • Scaling: Automatically adjust the number of running containers based on loa...

View all Associate Manager interview questions
An Associate Manager was asked 2mo ago
Q. Have you created CI/CD pipelines using YAML?
Ans. 

CI/CD pipelines using YAML streamline software development by automating testing and deployment processes.

  • YAML (YAML Ain't Markup Language) is a human-readable data serialization format often used for configuration files.

  • In CI/CD, YAML files define the steps for continuous integration and continuous deployment, such as build, test, and deploy stages.

  • Example of a simple CI pipeline in YAML: ```yaml stages: - bui...

View all Associate Manager interview questions
An Associate Manager was asked 2mo ago
Q. Adding kubernetes services using aks
Ans. 

Learn how to add Kubernetes services using Azure Kubernetes Service (AKS) effectively.

  • Create an AKS cluster using Azure CLI: `az aks create --resource-group myResourceGroup --name myAKSCluster --node-count 1 --enable-addons monitoring`

  • Use `kubectl` to deploy services: `kubectl apply -f service.yaml` where service.yaml defines your service configuration.

  • Expose your service using LoadBalancer type: `apiVersion: v1 k...

View all Associate Manager interview questions
A Data Analyst was asked 5mo ago
Q. What are joins and their types?
Ans. 

Joins are used to combine rows from two or more tables based on a related column between them.

  • Types of joins include inner join, left join, right join, and full outer join

  • Inner join returns rows when there is at least one match in both tables

  • Left join returns all rows from the left table and the matched rows from the right table

  • Right join returns all rows from the right table and the matched rows from the left tab...

View all Data Analyst interview questions
An Associate Manager was asked 6mo ago
Q. What is the difference between partitioning and clustering?
Ans. 

Partitioning divides data into distinct segments, while clustering groups similar data points based on characteristics.

  • Partitioning creates non-overlapping segments, e.g., dividing a database by region.

  • Clustering groups similar items, e.g., customer segmentation based on purchasing behavior.

  • Partitioning is often used for performance optimization in databases.

  • Clustering is used in machine learning for pattern recog...

View all Associate Manager interview questions
A Data Engineer was asked 7mo ago
Q. What is a copy activity in ADF?
Ans. 

Copy activity in Azure Data Factory (ADF) facilitates data transfer between various data stores.

  • Enables data movement from source to destination, e.g., SQL Database to Blob Storage.

  • Supports various data formats like CSV, JSON, and Parquet.

  • Can be scheduled or triggered by events, allowing for automation.

  • Utilizes integration runtime for data movement, which can be Azure or Self-hosted.

  • Allows for data transformation ...

View all Data Engineer interview questions
Are these interview questions helpful?
A Software Development Engineer 1 was asked 7mo ago
Q. What are 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 Resourc...

View all Software Development Engineer 1 interview questions
A Data Engineer was asked 8mo ago
Q. What is an 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.

View all Data Engineer interview questions
A Data Engineer was asked 8mo ago
Q. 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 resour...

View all Data Engineer interview questions

Tredence Interview Experiences

137 interviews found

I appeared for an interview in Jun 2017.

Interview Questionnaire 

12 Questions

  • Q1. Write the annotation for controller?
  • Ans. 

    An annotation for controller in software engineering.

    • The annotation for controller is used to define the class as a controller in a software application.

    • It is typically used in frameworks like Spring MVC or ASP.NET MVC.

    • The annotation helps in mapping the incoming requests to the appropriate controller methods.

    • It can also be used to specify the URL path for the controller.

    • Example: @Controller in Spring MVC, [ApiControll...

  • Answered by AI
  • Q2. Write the annotation for request mapping?
  • Ans. 

    The annotation for request mapping is used to map HTTP requests to specific methods in a controller class.

    • The annotation is @RequestMapping

    • It can be used at the class level to specify a common base URL for all methods in the class

    • It can also be used at the method level to specify the URL path and HTTP method for a specific method

    • Additional attributes can be used to further customize the mapping, such as specifying requ...

  • Answered by AI
  • Q3. What is front controller from context in spring mvc?
  • Ans. 

    Front controller is a design pattern used in Spring MVC to handle incoming requests and route them to appropriate handlers.

    • Front controller acts as a central point of control for handling requests in Spring MVC.

    • It receives all incoming requests and delegates them to appropriate handlers called controllers.

    • Front controller provides a consistent way to handle requests and perform common tasks like authentication, logging...

  • Answered by AI
  • Q4. Write the css box model?
  • Ans. 

    The CSS box model describes the layout and sizing of elements on a web page.

    • The box model consists of content, padding, border, and margin.

    • Content refers to the actual content of the element, such as text or images.

    • Padding is the space between the content and the border.

    • Border is a line that surrounds the padding and content.

    • Margin is the space outside the border, separating the element from other elements.

    • The width an...

  • Answered by AI
  • Q5. Select all div using jquery
  • Ans. 

    Select all div using jQuery

    • Use the jQuery selector $('div') to select all div elements

    • This will return a jQuery object containing all the selected div elements

    • You can then perform operations on the selected div elements using jQuery methods

  • Answered by AI
  • Q6. Change all ul element to blue background color using jquery
  • Ans. 

    Use jQuery to change the background color of all ul elements to blue.

    • Use the jQuery selector to select all ul elements

    • Use the css() method to change the background color to blue

  • Answered by AI
  • Q7. Change first li element to yellow background color using jquery
  • Ans. 

    Use jQuery to change the background color of the first li element to yellow.

    • Use the :first-child selector to select the first li element

    • Use the css() method to change the background color to yellow

  • Answered by AI
  • Q8. Output of this var arr=[1,2,3,4,5] arr.push(6) arr.unshift(1) arr.pop() arr.shift()
  • Ans. 

    The output of the given code is [1, 2, 3, 4, 5, 6].

    • The 'push' method adds an element to the end of the array.

    • The 'unshift' method adds an element to the beginning of the array.

    • The 'pop' method removes the last element from the array.

    • The 'shift' method removes the first element from the array.

  • Answered by AI
  • Q9. What are the uses of final in java
  • Ans. 

    The 'final' keyword in Java is used to declare constants, prevent method overriding, and ensure thread safety.

    • Final variables cannot be reassigned once initialized

    • Final methods cannot be overridden by subclasses

    • Final classes cannot be extended by other classes

    • Final parameters ensure that they cannot be modified within a method

    • Final fields can be used to achieve thread safety

  • Answered by AI
  • Q10. Public static void getsum(int a,int b){System.out.println("a b method");}public static void getsum(int a,int b,int c){System.out.println("a b c method");}public static void getsum(int a,int ...b){System.o...
  • Ans. 

    The question is about method overloading in Java.

    • Method overloading allows multiple methods with the same name but different parameters.

    • The method to be called is determined at compile-time based on the arguments passed.

    • In the given code, there are three overloaded methods with the same name 'getsum'.

    • The first method takes two integers as arguments.

    • The second method takes three integers as arguments.

    • The third method ta...

  • Answered by AI
  • Q11. Output of this program public static int floating(int x){ return x*floating(x-1); } public static void main(String[] args){ floating(10); }
  • Ans. 

    The program will result in a StackOverflowError due to infinite recursion.

    • The 'floating' method is recursively calling itself without a base case to stop the recursion.

    • Each recursive call multiplies the input parameter by the result of the recursive call with a decremented parameter.

    • This will continue indefinitely until the stack overflows and an error is thrown.

  • Answered by AI
  • Q12. What is the output of this int i=0; int j=10;do{ if(i++ < --j){ } }while(i
  • Ans. 

    The output of the code is 9.

    • The code initializes i as 0 and j as 10.

    • Inside the do-while loop, i is incremented by 1 and j is decremented by 1.

    • The loop continues until i becomes greater than or equal to j.

    • Since i is incremented before the comparison and j is decremented before the comparison, the loop runs 9 times.

    • Therefore, the output is 9.

  • Answered by AI

Interview Preparation Tips

Skills: Javascript, Java Programming, Jquery

Skills evaluated in this interview

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

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
2w
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 571 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 571 Reviews and Ratings
Data Science Senior Architect

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Senior Machine Learning /LLM Engineer

Pune

5-10 Yrs

Not Disclosed

Data Science Manager / Senior Manager

Pune

7-10 Yrs

Not Disclosed

Explore more jobs
Associate Manager
440 salaries
unlock blur

₹11 L/yr - ₹36.5 L/yr

Consultant
427 salaries
unlock blur

₹11.5 L/yr - ₹20 L/yr

Data Engineer
303 salaries
unlock blur

₹6.4 L/yr - ₹18.5 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