Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by LTIMindtree Team. If you also belong to the team, you can get access from here

LTIMindtree Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

LTIMindtree Mern Full Stack Developer Interview Questions and Answers

Updated 23 Aug 2024

LTIMindtree Mern Full Stack Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is error handling middleware?
  • Ans. 

    Error handling middleware is a function that processes errors in an Express application.

    • Error handling middleware is defined with four parameters: err, req, res, and next.

    • It is used to catch errors that occur during the execution of route handlers or other middleware functions.

    • It is typically defined at the end of the middleware chain with app.use() and has a signature like (err, req, res, next) => {...}.

    • Example: app.u...

  • Answered by AI

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Arrays reverse in js
  • Ans. 

    Use the built-in reverse() method to reverse an array in JavaScript.

    • Use the reverse() method on the array to reverse its elements in place.

    • Example: let arr = ['apple', 'banana', 'cherry']; arr.reverse(); // ['cherry', 'banana', 'apple']

  • Answered by AI
  • Q2. String question various conditions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is differnce between class and functional component
  • Ans. 

    Class components are ES6 classes that extend from React.Component and have a render method, while functional components are simple functions that return JSX.

    • Class components are more feature-rich and have access to lifecycle methods like componentDidMount, componentDidUpdate, etc.

    • Functional components are simpler and easier to read, especially for simple UI components.

    • Functional components can use React Hooks to manage...

  • Answered by AI
  • Q2. Write a basic function component
  • Ans. 

    A basic function component in React

    • Create a function component using the 'function' keyword

    • Return JSX elements within the component function

    • Example: const MyComponent = () => { return

      Hello World!
      ; }

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is virtual DOM?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM that allows for efficient updates and rendering in web applications.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing direct manipulation of the actual DOM.

    • When changes are made to the virtual DOM, a comparison is done with the actual DOM to identify the minimal number of updates needed.

    • This approach reduces the number of DOM ...

  • Answered by AI
  • Q2. What is foriegn Key SQL?
  • Ans. 

    Foreign key in SQL is a field in a table that is a primary key in another table, establishing a relationship between the two tables.

    • A foreign key constraint ensures referential integrity between two related tables.

    • It helps maintain consistency and avoid orphan records.

    • Example: In a database with tables 'orders' and 'customers', the 'customer_id' in 'orders' table can be a foreign key referencing the 'id' column in 'cus

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is props
  • Ans. 

    Props are read-only properties that are passed from a parent component to a child component in React.

    • Props allow data to be passed down the component tree.

    • Props are immutable and cannot be changed by the child component.

    • Props are accessed in the child component using this.props.

  • Answered by AI
  • Q2. What is Good feedback you ever got in during you development period.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Which one you choose mongo vs mysql and why
  • Ans. 

    I would choose MongoDB for its flexibility and scalability in handling unstructured data.

    • MongoDB is a NoSQL database, making it easier to work with unstructured data compared to MySQL which is a relational database.

    • MongoDB is highly scalable and can handle large amounts of data and high traffic loads.

    • MongoDB is a good choice for applications that require frequent updates and real-time analytics.

    • MySQL is a better choice...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions about Spring
Round 2 - Technical 

(1 Question)

  • Q1. Deep into spring
Round 3 - HR 

(1 Question)

  • Q1. About SQL and quireis
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 4 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 

Quantitive aptitude, reasoning

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your weakness and strength?
  • Q3. Why should I hire you
Round 4 - Technical 

(1 Question)

  • Q1. Programming related questions

I applied via Campus Placement and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

The test contains aptitude ques and one coding ques

Round 2 - Technical 

(3 Questions)

  • Q1. They asked about oops concepts in depth
  • Q2. They also asked about dbms concepts
  • Q3. And one coding ques the ques the interviewer asked is palindrome number

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best for your interview be confident and you can do it
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

For a fresher there will be aptitude interview

Round 2 - Technical 

(2 Questions)

  • Q1. There will be technical questions in the round 2
  • Q2. 1.What is jvm jre and jdk 2.what is null and its value 3.what is pass by reference 4.what is regular expression
  • Ans. 

    1. JVM is a virtual machine that executes Java bytecode. JRE is a runtime environment that includes JVM and libraries. JDK is a development kit that includes JRE and tools for developing Java applications. 2. Null is a special value that represents the absence of a value. Its value is typically used to indicate that a variable does not refer to any object. 3. Pass by reference is a method of parameter passing where the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good, be good in the selective technology stuff

Skills evaluated in this interview

full stack .net developer Interview Questions & Answers

NTT Data user image Ponni Kaliyamoorthy Manonmani

posted on 16 Jul 2022

I applied via Naukri.com and was interviewed in Jun 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. Oops concepts, API methods,
Round 3 - HR 

(1 Question)

  • Q1. Basic education questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve new technologies. Question raised form new framework

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Mern Full Stack Developer interview?
LTIMindtree interview process usually has 1 rounds. The most common rounds in the LTIMindtree interview process are Technical.

Tell us how to improve this page.

LTIMindtree Mern Full Stack Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
LTIMindtree Mern Full Stack Developer Salary
based on 10 salaries
₹3.5 L/yr - ₹8 L/yr
22% less than the average Mern Full Stack Developer Salary in India
View more details
Senior Software Engineer
21.3k salaries
unlock blur

₹5.1 L/yr - ₹18.7 L/yr

Software Engineer
16.2k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Module Lead
6.7k salaries
unlock blur

₹7 L/yr - ₹25.5 L/yr

Technical Lead
6.4k salaries
unlock blur

₹9.4 L/yr - ₹36 L/yr

Senior Engineer
4.4k salaries
unlock blur

₹4.2 L/yr - ₹16.3 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.8
Compare

Capgemini

3.7
Compare

Accenture

3.8
Compare

TCS

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