Tredence Analytics interview experience Real time questions & tips from candidates to crack your interview

Software Engineer

Tredence Analytics
upvote
share-icon
3 rounds | 10 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 6 months
Topics: JavaScript, Java Programming, JQuery, DSA, OOPS, System Design
Tip
Tip

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 process
Where: Referral
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

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.

Interview rounds

01
Round
Easy
Face to Face
Duration60 minutes
Interview date26 Jun 2017
Coding problem4

Technical Interview round with questions on CSS and Jquery mainly.

1. CSS Question

What is CSS box model?

Problem approach

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 parts :
Content - The content of the box, where text and images appear
Padding - Clears an area around the content. The padding is transparent
Border - A border that goes around the padding and content
Margin - Clears an area outside the border. The margin is transparent
The box model allows us to add a border around elements, and to define space between elements.

2. JQuery Question

Select all div using Jquery.

Problem approach
$(function() 
{
	console.log($('div')); 
	// [], []

	$('div').each(function(i, ele) {
		console.log(i + ': ' + ele); 
		// 0: 
		// 1: 
	});
});​

3. JavaScript Question

Change the background color of all items

Problem approach

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

 

4. 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()
Problem approach

[ 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 ]

02
Round
Easy
Face to Face
Duration60 minutes
Interview date26 Jun 2017
Coding problem5

Technical Interview round with questions on Java mainly.

1. Java Question

Uses of Final Keyword in Java

Problem approach

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 static block only.
1) Java final variable : If you make any variable as final, you cannot change the value of final variable(It will be constant).
2) Java final method : If you make any method as final, you cannot override it.
3) Java final class : If you make any class as final, you cannot extend it.

2. Java Question

What is Front Controller in Spring MVC?

Problem approach

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

3. Java Question

Write the annotation for request mapping?

4. Java Question

Write the annotation for controller?

5. 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);
}
Problem approach

Will result in Stack Overflow Error.

03
Round
Easy
HR Round
Duration30 minutes
Interview date26 Jun 2017
Coding problem1

This was a typical HR round.

1. 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?

Problem approach

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 work environment etc.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
Software Engineer
3 rounds | 4 problems
Interviewed by Tredence Analytics
1191 views
0 comments
0 upvotes
Software Engineer
3 rounds | 8 problems
Interviewed by Tredence Analytics
1303 views
0 comments
0 upvotes
Senior Software Engineer
3 rounds | 3 problems
Interviewed by Tredence Analytics
1096 views
0 comments
0 upvotes
Business Analyst
2 rounds | 10 problems
Interviewed by Tredence Analytics
1115 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
4 rounds | 1 problems
Interviewed by Newgen Software
3210 views
2 comments
0 upvotes
company logo
Software Engineer
3 rounds | 6 problems
Interviewed by HashedIn
2583 views
0 comments
0 upvotes
company logo
Software Engineer
2 rounds | 2 problems
Interviewed by Ernst & Young (EY)
0 views
0 comments
0 upvotes