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 was interviewed before Apr 2021.

Round 1 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on CSS and Jquery mainly.

  • Q1. CSS Question

    What is CSS box model?

  • Ans. 

    The CSS box model is a container that contains multiple properties including borders, margin, padding, and the content itself. It is used to create the design and layout of web pages. It can be used as a toolkit for customizing the layout of different elements. The web browser renders every element as a rectangular box according to the CSS box model. Box-Model has multiple properties in CSS.
    Explanation of the different...

  • Answered by CodingNinjas
  • Q2. JQuery Question

    Select all div using Jquery.

  • Ans. 
    $(function() 
    {
    	console.log($('div')); 
    	// [], []
    
    	$('div').each(function(i, ele) {
    		console.log(i + ': ' + ele); 
    		// 0: 
    		// 1: 
    	});
    });​
  • Answered by CodingNinjas
  • Q3. JavaScript Question

    Change the background color of all items

  • Ans. 

    var x = document.querySelectorAll("li");

     

    for (let i = 0; i < x.length; i++) {
    	x[i].style.backgroundColor = "red";
    }
    li 
    {
    	color: white;
    	text-align: center;
    	border: 1px solid white;
    	font-weight: 900;
    }

     

    Aman

    Rohan

    Naman

     

  • Answered by CodingNinjas
  • Q4. JavaScript Question

    What will be the output of the following code snippet?

    var arr=[1,2,3,4,5] 
    arr.push(6)
    arr.unshift(1) 
    arr.pop() 
    arr.shift()
  • Ans. 

    [ 1, 2, 3, 4, 5 ]
    Explanation :
    1. arr.push(6) => [ 1, 2, 3, 4, 5, 6 ]
    2. arr.unshift(1) =>[1, 1, 2, 3, 4, 5, 6]
    3. arr.pop() => [ 1, 1, 2, 3, 4, 5 ]
    4. arr.shift() => [ 1, 2, 3, 4, 5 ]

  • Answered by CodingNinjas
Round 2 - Face to Face 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on Java mainly.

  • Q1. Java Question

    Uses of Final Keyword in Java

  • Ans. 

    The final keyword in java is used to restrict the user. The java final keyword can be used in many context. Final can be :
    variable
    method
    class


    The final keyword can be applied with the variables, a final variable that have no value it is called blank final variable or uninitialized final variable. It can be initialized in the constructor only. The blank final variable can be static also which will be initialized in the s...

  • Answered by CodingNinjas
  • Q2. Java Question

    What is Front Controller in Spring MVC?

  • Ans. 

    In Spring Web MVC, the DispatcherServlet class works as the front controller. It is responsible to manage the flow of the Spring MVC application.

  • Answered by CodingNinjas
  • Q3. Java Question

    Write the annotation for request mapping?

  • Q4. Java Question

    Write the annotation for controller?

  • Q5. Java Question

    Output of the following code snippet :

    
    public static int floating(int x){ 
    	return x*floating(x-1); 
    } 
    public static void main(String[] args){
    	floating(10);
    }
  • Ans. 

    Will result in Stack Overflow Error.

  • Answered by CodingNinjas
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was a typical HR round.

  • Q1. Basic HR Questions

    1. If your teamleader is taking credit for all the hardwork you're doing, what will you do?
    2. Why Tredence?
    3. Why should we hire you?

  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.

    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.

    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round, like what are the projects currently the company is investing, which team you are mentoring. How all is the

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPATredence Inc. interview preparation:Topics to prepare for the interview - JavaScript, Java Programming, JQuery, DSA, OOPS, System DesignTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

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)

I was interviewed 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

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)

Jobs at Tredence

View all

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