Upload Button Icon Add office photos

Filter interviews by

Tredence Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top Tredence Interview Questions and Answers

View all 118 questions

Tredence Interview Experiences

Popular Designations

122 interviews found

I applied via Ion and was interviewed in 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 - Aptitude Test 
Round 3 - Technical 

(1 Question)

  • Q1. 1)Tell me about yourself. 2)What Technical Tools i know and skills i have. 3)What did i do in my previous company(in detail)

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident about your latest work experience

Top Tredence Business Analyst Interview Questions and Answers

Q1. Check if a number is palindromeGiven an alphabetical string ‘S’. Determine whether it is palindrome or not. A palindrome is a string that is equal to itself upon reversing it. For example: ‘S’ = racecar The reverse of ‘S’ is: racecar Since ... read more
View answer (2)

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 19 May 2022

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

  • Q1. Reverse Linked List

    Given a singly linked list of integers. Your task is to return the head of the reversed linked list.

    For example:
    The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then th...
  • Ans. Brute Force

    The brute force approach is to use recursion. First, we reach the end of the Linked List recursively and at last node, we return the last node, which becomes the new head of the partially reversed Linked List. While coming back from each recursion call we add the current node in the current recursion call to the last node of the partially reversed Linked List and assign the current node to null.

     

    Steps:

    &...

  • Answered by CodingNinjas
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Node JS based Question

    Had to make a connection to a DB via NodeJS. Then take input from a form and feed it into a database.

  • Ans. 

    Created a connection in Node.
    Created a form in HTML
    Fetched the data and fed it to the API
    Did some processing and sent it to the database

  • Answered by CodingNinjas
  • Q2. Puzzle

    4 litre water puzzle

  • Ans. 

    Tip 1 : Understand the problem in detail
    Tip 2 : Discuss possible cases
    Tip 3 : Communicate your thoughts clearly on your approach

  • Answered by CodingNinjas
Round 3 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. Web Development Question

    Gave CSS code and asked me to debug it to make the functionality work

  • Ans. 

    I understood the result expectation first
    I analyzed the given code
    There was an issue in the parent and child selection, so I fixed that.
    The interviewer tried to confuse me by asking few variations.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in BangaloreEligibility criteriaNo CriteriaTredence Analytics interview preparation:Topics to prepare for the interview - Arrays, Strings, Hashing, CSS, NodeJS, BackendTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : If you are looking for fullstack roles, prepare CSS well
Tip 2 : Prepare 2 pointer Array questions

Application resume tips for other job seekers

Tip 1 : If you have any python or cloud related experience, do put it and make it stand out.
Tip 2 : They would lay more emphasis on the projects, sometimes even more than the interview itself.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Tredence Software Engineer Interview Questions and Answers

Q1. Check If The String Is A PalindromeYou are given a string 'S'. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols and whitespaces. Note : String... read more
View answer (3)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based python and SQL questions
Round 3 - One-on-one 

(1 Question)

  • Q1. General discussion with manager

Interview Preparation Tips

Interview preparation tips for other job seekers - It is easy to crack interviews here and they hire and train freshers. For experienced folks it becomes much easier to get selected.

Top Tredence Senior Software Engineer Interview Questions and Answers

Q1. All Paths From Source Lead To DestinationThere is a directed graph consisting of ‘N’ nodes numbered from 0 to ‘N’-1. You are given a list ‘EDGES’ of size ‘M’, consisting of all the edges of this directed graph, and two nodes ‘SRC’ and ‘DEST... read more
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

What people are saying about Tredence

View All
bigfishhell
Verified Icon
16h (edited)
works at
Tredence
I heard about free food in tredence inc ? 3 times food? How about taste and quality of free food in Chennai office
Got a question about Tredence?
Ask anonymously on communities.

I was interviewed before May 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

It was conducted in the evening on Teams call. It was a mix of DSA question, conceptual discussion on javascript and node.js.

  • Q1. All Paths From Source Lead To Destination

    There is a directed graph consisting of ‘N’ nodes numbered from 0 to ‘N’-1. You are given a list ‘EDGES’ of size ‘M’, consisting of all the edges of this directed...

  • Ans. 

    The idea is to do Depth First Traversal of given directed graph.
    Start the DFS traversal from source.
    Keep storing the visited vertices in an array or HashMap say ‘path[]’.
    If the destination vertex is reached, print contents of path[].
    The important thing is to mark current vertices in the path[] as visited also so that the traversal doesn’t go in a cycle.

  • Answered by CodingNinjas
Round 2 - Assignment 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

  • Q1. Design Question

    I was given a wireframe of dashboard and was asked to come up with a similar looking dashboard in angular and node.js.

  • Ans. 

    Tip 1 : Structure your code well.
    Tip 2 : Be thorough with the whats and whys of the implementation.
    Tip 3 : See that the project runs and you can demo it.

  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

It was a hiring manager round which happened in the evening. The interviewer introduced me to the product I was being hired for, asked me a few questions on my experience (both technical and business). I talked on the architecture and design of Single page applications and my then current project. I was also allowed to ask questions and they were addressed.

  • Q1. Project Based Question

    Explain the architecture of your current project.

  • Ans. 

    Tip 1 : Talk on tech stack.
    Tip 2 : Talk on design decisions and challenges, and resolutions.
    Tip 3 : Be thorough of working of components and modules of your project.

  • Answered by CodingNinjas
Round 4 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was in the evening. The interviewer was professional. I was asked about my past experiences, why I was switching and some behavioral questions.

  • Q1. Basic HR questions

    Questions on past experiences, why I was switching. What I like and dislike about my past role. What is my expectations from future roles.

  • Ans. 

    Tip 1 : Be honest and communicate your ideas clearly.
    Tip 2 : Set your expectations well.
    Tip 3 : Be professional

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in BangaloreEligibility criteriaNo criteriaTredence Inc. interview preparation:Topics to prepare for the interview - JavaScript, Angular, Node.js, SQL, NoSQLTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : prepare on core javascript concepts
Tip 2 : Be thorough with your past projects. You may be asked to explain components and their working.
Tip 3 : Be thorough with your tech stack. For example, if you are a MEAN stack developer, then Angular, Node.js are in focus.
Tip 4 : prepare basic DSA

Application resume tips for other job seekers

Tip 1 : Mention your skills and projects you have done.
Tip 2 : Keep it clean, concise and readable.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Tredence Senior Software Engineer Interview Questions and Answers

Q1. All Paths From Source Lead To DestinationThere is a directed graph consisting of ‘N’ nodes numbered from 0 to ‘N’-1. You are given a list ‘EDGES’ of size ‘M’, consisting of all the edges of this directed graph, and two nodes ‘SRC’ and ‘DEST... read more
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Tredence interview questions for popular designations

 Analyst

 (22)

 Data Analyst

 (13)

 Business Analyst

 (9)

 Consultant

 (9)

 Data Scientist

 (9)

 Data Engineer

 (7)

 Senior Software Engineer

 (7)

 Associate Manager

 (6)

Scrum Master Interview Questions & Answers

user image Anonymous

posted on 30 Apr 2022

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. All question were on core concept on Scrum Framework.
Round 2 - Technical 

(1 Question)

  • Q1. Mode deep drill down on Agile and Scrum Framework understanding with practical exposure and real time situation based questions
Round 3 - Technical 

(1 Question)

  • Q1. Situational based question, team handling capabilities, communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidate should have good understanding on scrum framework concepts and its principals and values.

Scrum Master Interview Questions asked at other Companies

Q1. If a developer who was working on a critical user story suddenly goes on emergency medical leave. how will you deal with the situation?
View answer (4)

Get interview-ready with Top Tredence Interview Questions

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python basics, Sql basics, ML basics, and Some analytical questions in Manegerial Round

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be Calm and Prepare Python , Sql , and Basics of AI .

Senior Business Analyst Interview Questions asked at other Companies

Q1. Difference between annuity and pension, types of annuity and pension, actions done on a policy, policy flow, RI insurance and it’s types and difference between them. Coinsurance, what are the charges when u cancel policy in 1st year vs 3rd ... read more
View answer (1)

Jobs at Tredence

View all

I applied via Referral and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Guesstimate - How will you estimate the number of bridal dresses sold in a year in x country.
  • Ans. 

    Estimate the number of bridal dresses sold in a year in x country.

    • Research the population of x country and the average age of marriage

    • Find out the percentage of marriages that take place in x country

    • Determine the average cost of a bridal dress and the percentage of brides who buy a dress

    • Use industry reports and sales data from bridal dress retailers in x country

    • Consider seasonal trends and cultural traditions that may

  • Answered by AI
  • Q2. Questions - How many white hyundai santro is in Delhi right now?
  • Q3. Questions related to window functions in SQL.

Interview Preparation Tips

Interview preparation tips for other job seekers - The first interview was work experience related. Questions around database and sql were asked. Some of the questions were around retail problem statements and which parameters would you consider in data for finding solution. The second interview is mostly problem solving orientated, with focus on case study, puzzles and guesstimates. Rest of the questions were past work experience related.

Analytics Consultant Interview Questions asked at other Companies

Q1. What are the different types of Join used in SQL?
View answer (3)

Consultant Interview Questions & Answers

user image Anonymous

posted on 1 Oct 2022

I applied via Naukri.com and was interviewed before Oct 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic of python and it related questions
  • Q2. Python API and it's applications
  • Ans. 

    Python API is a set of protocols and tools for building software applications in Python.

    • Python API allows developers to access and manipulate data from external sources.

    • It can be used to create web applications, automate tasks, and build machine learning models.

    • Popular Python APIs include Flask, Django, and NumPy.

    • Python API can also be used for data visualization and analysis with libraries like Matplotlib and Pandas.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Basics of python and it's related questions
  • Q2. Python API and it's related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - This in one of the best place to work for Analytics

Skills evaluated in this interview

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basics in Python
  • Q2. Guesstimates related questions
  • Ans. Refer geeks for geeks for these questions
  • Answered Anonymously
  • Q3. SQL queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself. Don't fake your identity which will lose your self-confidence.

Top Tredence Business Analyst Interview Questions and Answers

Q1. Check if a number is palindromeGiven an alphabetical string ‘S’. Determine whether it is palindrome or not. A palindrome is a string that is equal to itself upon reversing it. For example: ‘S’ = racecar The reverse of ‘S’ is: racecar Since ... read more
View answer (2)

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)

I applied via LinkedIn and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 
Round 3 - Case Study 

About RCM Industry group

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared with certain examples

Management Consultant Interview Questions asked at other Companies

Q1. Case study: Assuming you are the product manager for a warehousing module, how will you develop a warehouse inventory module
View answer (1)

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 Machine Learning, Data Management, Python, Data Mining and SQL.
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. What is the difference between under fitting and over fitting. How to overcome ...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.

Tredence Interview Process

based on 61 interviews in last 1 year

Interview experience

4
  
Good
View more

People are getting interviews through

based on 73 Tredence interviews
Campus Placement
Job Portal
Referral
WalkIn
Company Website
41%
34%
5%
4%
3%
13% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.7
 • 222 Interviews
Fractal Analytics Interview Questions
4.0
 • 198 Interviews
Axtria Interview Questions
3.0
 • 113 Interviews
C5i Interview Questions
4.1
 • 43 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Algonomy Interview Questions
3.9
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

Tredence Reviews and Ratings

based on 433 reviews

3.6/5

Rating in categories

3.8

Skill development

3.1

Work-Life balance

3.4

Salary & Benefits

3.6

Job Security

3.5

Company culture

3.1

Promotions/Appraisal

3.4

Work Satisfaction

Explore 433 Reviews and Ratings
Consultant
335 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Associate Manager
335 salaries
unlock blur

₹12.5 L/yr - ₹35 L/yr

Senior Business Analyst
276 salaries
unlock blur

₹6.5 L/yr - ₹17 L/yr

Data Engineer
190 salaries
unlock blur

₹6 L/yr - ₹22 L/yr

Business Analyst
180 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Explore more salaries
Compare Tredence with

Fractal Analytics

4.0
Compare

Mu Sigma

2.7
Compare

LatentView Analytics

3.7
Compare

AbsolutData

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview