Upload Button Icon Add office photos

Tredence

Compare button icon Compare button icon Compare

Filter interviews by

Tredence Software Engineer Interview Questions, Process, and Tips

Updated 24 May 2022

Top Tredence Software Engineer Interview Questions and Answers

  • Q1. Palindrome String Validation Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols. Note: The string ...read more
  • Q2. Pair Sum Problem Statement You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where eac ...read more
  • Q3. Reverse Linked List Problem Statement Given a singly linked list of integers, return the head of the reversed linked list. Example: Initial linked list: 1 -> 2 -> 3 -> 4 ...read more
View all 25 questions

Tredence Software Engineer Interview Experiences

5 interviews found

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

I was interviewed before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

The round was scheduled in afternoon time.
HackerEarth test link was shared beforehand
All the instructions were provided in the welcome page of test link.
It was proctored test

  • Q1. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Q2. 

    Find First Repeated Character in a String

    Given a string 'STR' composed of lowercase English letters, identify the character that repeats first in terms of its initial occurrence.

    Example:

    Input:
    STR =...
Round 2 - Video Call 

(1 Question)

Round duration - 35 minutes
Round difficulty - Medium

It was in afternoon 3pm.
Interview platform was Microsoft teams.
Interview link was shared a day before.
Interviewer was professional.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
Round 3 - HR 

(2 Questions)

Round duration - 25 Minutes
Round difficulty - Medium

It was held around 4pm.
Scheduled on MS teams.
Interview link shared one day before.
The interviewer was pretty chill and made me comfortable.

  • Q1. How would you handle a situation where a company approaches you during a pandemic and states that demand is high but supply is low?
  • Q2. Why do you want to join this company?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in BengaluruEligibility criteriaAbove 60 percentage in 10th, 12th and Btech upto 7th SemesterTredence Inc. interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Data Analysis, Python Libraries, SQL, OOPSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice coding questions till you are able to tackle medium level questions easily
Tip 2 : Be proficient in the project which you have mentioned in your resume.

Application resume tips for other job seekers

Tip 1 : Never Lie about technologies you know
Tip 2 : Project shouldn't be copied from online sources even if you take help then do some your own tweaks or add new features and you should know all workings of project

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. You have a puzzle involving 4 liters of water. Can you describe the details of this puzzle?
Round 3 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. You were given CSS code and asked to debug it to make the functionality work. Can you describe the process you followed and the issues you encountered?

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

Interview Questionnaire 

1 Question

  • Q1. About informatica and sql

Tredence interview questions for designations

 Senior Software Engineer

 (7)

 Software Development Engineer 1

 (1)

 Data Engineer

 (7)

 Power BI Developer

 (2)

 Technology Consultant

 (1)

 Full Stack Developer

 (1)

 Scrum Master

 (1)

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on CSS and Jquery mainly.

  • Q1. What is the CSS box model?
  • Q2. How do you select all div elements using jQuery?
  • Q3. How can you change the background color of all items in JavaScript?
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on Java mainly.

  • Q1. What are the uses of the final keyword in Java?
  • Q2. What is the Front Controller in Spring MVC?
  • Q3. What is the annotation for request mapping in Java?
  • Q4. What is the annotation used for a controller in Java?
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a typical HR round.

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

Get interview-ready with Top Tredence Interview Questions

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

4 sections Quantitative Analysis, Programming Based (output analysis, error detection), Aptitude and ML Engineering ( activation functions, models etc basics)

Round 2 - One-on-one 

(2 Questions)

  • Q1. Merge Sort simple divide and conquer but a pain to execute they really just look for how logical you are and if your approach is correct
  • Q2. Talk about your projects previous experience etc
Round 3 - HR 

(2 Questions)

  • Q1. What do you think about Q
  • Q2. Personality based questions like what are your hobbies, what drives you etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident consistent and concise
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Nextwave and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

I got the opportunity through Nextwave. In the coding test I’m supposed to solve few aptitude questions and around 5-6 coding questions. Out of them 2 are of easy level ,2 are medium and 2 are of hard level.
I solved 2 easy, 1 medium and 1 hard problem.

Round 2 - Technical 

(2 Questions)

  • Q1. Self Introduction , Resume based questions related to project and strengths
  • Q2. Programming questions like pattern printing, palindrome without using reverse method, GCD
Round 3 - Technical 

(2 Questions)

  • Q1. Started with reasoning and aptitude questions based on pattern analysis, number system, profit and loss.
  • Q2. Programming questions from leetcode 1.Spiral matrix 2.Pascal’s triangle 3.subsequences 4.problem based on DFS

Interview Preparation Tips

Topics to prepare for ThoughtWorks Software Engineer interview:
  • Data Structures
  • Problem Solving
  • Any programming language
  • SQL
Interview preparation tips for other job seekers - Need to have a strong problem solving skills and continuous practising of the programs in leet code of easy and medium level increase the chances for cracking the interview.
Make sure that your project code is available with you at the time of interview and everything you place in the resume must have the supported information with you.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic java and spring boot questions with some deeper knowledge.
Round 2 - Technical 

(1 Question)

  • Q1. Manger round to know about product and system
Round 3 - HR 

(1 Question)

  • Q1. Some behavioural and questions releated to why want to change and expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up yours basics and check multithreading and microservices questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Describe Flex PLM Architecture
  • Ans. 

    Flex PLM Architecture is a scalable and flexible system that allows for efficient product lifecycle management.

    • Flex PLM is built on a service-oriented architecture, allowing for easy integration with other systems.

    • It consists of various modules such as Design, Development, Sourcing, Production, and Quality.

    • The system uses a centralized database to store all product-related information.

    • Flex PLM supports multi-site, mult...

  • Answered by AI
  • Q2. Describe the Bom Table and its references
  • Ans. 

    BOM table is a Bill of Materials table used in manufacturing to list all components needed for a product.

    • BOM table lists all components and materials required for manufacturing a product

    • It includes information such as part number, description, quantity, and unit of measure

    • BOM table also includes references to drawings, specifications, and suppliers

    • It helps in planning production, managing inventory, and tracking costs

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

(1 Question)

  • Q1. Bigquery Architecture

Tredence Interview FAQs

How to prepare for Tredence Software Engineer 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 Html5, Javascript, Software Engineering, Web Technologies and Career Development.
What are the top questions asked in Tredence Software Engineer interview?

Some of the top questions asked at the Tredence Software Engineer interview -

  1. public static void getsum(int a,int b){System.out.println("a b method");}public...read more
  2. output of this program public static int floating(int x){ return x*floating(...read more
  3. what is front controller from context in spring m...read more

Tell us how to improve this page.

Tredence Software Engineer Salary
based on 59 salaries
₹5.6 L/yr - ₹14 L/yr
7% more than the average Software Engineer Salary in India
View more details

Tredence Software Engineer Reviews and Ratings

based on 9 reviews

4.2/5

Rating in categories

4.2

Skill development

3.6

Work-life balance

3.0

Salary

3.7

Job security

3.7

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 9 Reviews and Ratings
Associate Manager
357 salaries
unlock blur

₹12.5 L/yr - ₹36.5 L/yr

Consultant
349 salaries
unlock blur

₹8.2 L/yr - ₹22.8 L/yr

Senior Business Analyst
263 salaries
unlock blur

₹6.5 L/yr - ₹17 L/yr

Data Engineer
216 salaries
unlock blur

₹6 L/yr - ₹18 L/yr

Business Analyst
173 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Explore more salaries
Compare Tredence with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

LatentView Analytics

3.7
Compare

AbsolutData

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