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.
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.
Technical Interview round with questions on CSS and Jquery mainly.
What is CSS box model?
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.
Select all div using Jquery.
$(function()
{
console.log($('div'));
// [], []
$('div').each(function(i, ele) {
console.log(i + ': ' + ele);
// 0:
// 1:
});
});Change the background color of all items
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
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()[ 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 ]
Technical Interview round with questions on Java mainly.
Uses of Final Keyword in Java
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.
What is Front Controller in Spring MVC?
In Spring Web MVC, the DispatcherServlet class works as the front controller. It is responsible to manage the flow of the Spring MVC application.
Write the annotation for request mapping?
Write the annotation for controller?
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);
}Will result in Stack Overflow Error.
This was a typical HR round.
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?
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
What is recursion?