i
LTIMindtree
Filter interviews by
I applied via Referral and was interviewed in Nov 2024. There were 3 interview rounds.
A bug is a general term for any flaw or error in a software application, while a defect is a specific instance of a bug that causes a deviation from expected behavior.
Bug is a broader term encompassing all types of issues in software.
Defect is a specific instance of a bug that can be identified and fixed.
Example: Bug - Application crashes randomly. Defect - Button does not work as intended.
Example: Bug - Incorrect calc...
Agile is a project management methodology that emphasizes flexibility, collaboration, and iterative development.
Agile focuses on delivering value to customers through continuous collaboration and feedback.
It involves breaking down projects into smaller, manageable tasks called sprints.
Teams work in short iterations to adapt to changing requirements and deliver working software quickly.
Common Agile frameworks include Sc
SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.
SDLC is a systematic process for building software applications.
It consists of several phases including planning, analysis, design, implementation, testing, and maintenance.
Each phase has its own set of activities and deliverables.
Examples of SDLC models include Waterfall, Agi
Scenarios to test movie ticket booking app include user registration, movie selection, seat selection, payment processing, and booking confirmation.
User registration process
Movie selection and availability
Seat selection and seating arrangement
Payment processing and options
Booking confirmation and ticket generation
In 5 years, I see myself as a Senior Quality Engineer leading a team of quality professionals in a reputable company.
Continuing to enhance my skills and knowledge in quality engineering
Taking on more leadership responsibilities within the quality department
Contributing to the development and implementation of quality improvement initiatives
Building strong relationships with cross-functional teams to drive quality goals
...
I expect clear communication, challenging projects, opportunities for growth, and a supportive team environment.
Clear communication with team members and stakeholders
Challenging projects that allow me to utilize my skills and knowledge
Opportunities for professional growth and development
A supportive team environment that fosters collaboration and innovation
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
Some disadvantages of using Node.js include performance issues with CPU-bound tasks, callback hell, and lack of strong typing.
Performance issues with CPU-bound tasks due to its single-threaded nature
Callback hell can occur when handling multiple asynchronous operations
Lack of strong typing can lead to errors that may not be caught until runtime
A lambda helper is a function that is used to assist or enhance the functionality of a lambda function.
Lambda helpers can be used to perform common tasks or operations within a lambda function.
They can help in reducing code duplication and improving code readability.
Examples of lambda helpers include functions for logging, error handling, and data validation.
Resources can be shared between two node instances using inter-process communication methods like message passing or shared memory.
Use message passing mechanisms like sockets, message queues, or RPC to share data between node instances
Implement shared memory using techniques like memory-mapped files or shared buffers to allow direct access to shared resources
Use synchronization mechanisms like locks, semaphores, or mut...
Node.js uses an event-driven, non-blocking I/O model to prioritize tasks.
Node.js uses an event loop to handle asynchronous operations.
Tasks are prioritized based on their completion time and the order in which they were added to the event loop.
Node.js allows developers to write code that runs concurrently without blocking the main thread.
Tasks with callbacks are executed once the I/O operation is completed, allowing ot
Basic aptitude question.
Basic coding question.
I have strong problem-solving skills and attention to detail.
I have experience in root cause analysis to identify and resolve quality issues.
I am proficient in statistical analysis to improve processes and reduce defects.
I have a track record of implementing quality control measures to ensure product reliability.
I pay close attention to detail in all aspects of my work to maintain high quality standards.
What people are saying about LTIMindtree
I applied via campus placement at NBKR Institute of Science and Technology, Vidyanagar and was interviewed in Nov 2024. There were 4 interview rounds.
It was about an aptitude test which is on English grammar and athematic reasoning.
The Fibonacci series can be applied to alphabets, and the same should be printed.
Print numbers in descending order 123456
Create an array of strings containing the numbers 1 to 6
Sort the array in descending order
Print the sorted array
I am choosing your organization because of its reputation for innovation, strong company culture, and opportunities for growth.
Reputation for innovation in the industry
Strong company culture that values employee development
Opportunities for growth and advancement within the organization
Yes, I am open to relocation for the right opportunity.
I am willing to relocate for the right job opportunity that aligns with my career goals.
I am open to exploring new locations and experiencing different cultures.
I understand that relocation may be necessary for career advancement and personal growth.
Yes, I am comfortable with rotational shifts as I have prior experience working in such shifts.
I have previous experience working in rotational shifts at my previous job.
I am adaptable and can easily adjust my schedule to accommodate rotational shifts.
I understand the importance of being available during different shifts to ensure smooth operations.
I am willing to work in rotational shifts to support the team and meet
LTIMindtree interview questions for popular designations
The role of a Cloud Support Engineer involves providing technical support to customers using cloud services, troubleshooting issues, and ensuring smooth operation of cloud infrastructure.
Provide technical support to customers using cloud services
Troubleshoot issues related to cloud infrastructure
Ensure smooth operation of cloud services
Collaborate with cross-functional teams to resolve technical issues
Document and comm
Get interview-ready with Top LTIMindtree Interview Questions
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
Code to count the occurrences of each letter in a string and print the result
Iterate through each character in the string
Use a dictionary to store the count of each letter
Print the count of each letter at the end
Appium server can be started using command line, programmatically in code, or using Appium desktop app.
Start Appium server using command line by running 'appium' command
Start Appium server programmatically in code using Appium server programmatically in code using AppiumDriverLocalService class
Start Appium server using Appium desktop app by launching the app and starting the server
Tests can be run parallel for mobile devices using test automation frameworks like Appium or Espresso.
Use test automation frameworks like Appium or Espresso to run tests parallel for mobile devices
Leverage cloud-based testing platforms like Sauce Labs or BrowserStack for parallel testing on multiple devices
Implement parallel test execution using tools like TestNG or JUnit in combination with Appium or Espresso
Utilize d...
Automating OTP in mobile involves using automation tools to interact with the OTP input field and validate the received OTP.
Use automation tools like Appium or Espresso to interact with the OTP input field
Extract the OTP from the message received on the mobile device
Validate the extracted OTP with the OTP input field
Handle scenarios where OTP validation fails
Desired capabilities are a set of properties or attributes that define the behavior of a browser or mobile device in Selenium automation testing.
Desired capabilities are key-value pairs that are used to configure the WebDriver instances in Selenium.
They can be used to set properties like browser name, version, platform, and other settings.
For example, setting 'browserName' to 'chrome' will launch the Chrome browser dur
To run tests on iOS or Android devices using Appium, specify the platformName capability in desired capabilities.
Specify platformName capability as 'iOS' for iOS devices and 'Android' for Android devices
Include other necessary desired capabilities like deviceName, platformVersion, appPackage, appActivity, etc.
Example: capabilities.setCapability('platformName', 'iOS');
Setting up automation for iOS devices involves using tools like Appium and Xcode for testing mobile applications.
Install Xcode on your Mac machine
Set up Appium for iOS automation
Connect your iOS device to the Mac machine
Create test scripts using Appium for iOS apps
Execute the test scripts on the connected iOS device
I applied via Campus Placement
General aptitude, computer science fundamentals multiple-choice questions, and data structures and algorithms multiple-choice questions were asked.
Function to reverse a given string
Create an empty string to store the reversed string
Iterate through the input string in reverse order and append each character to the new string
Return the reversed string
Binary search function to find target value in sorted array
Define function that takes sorted array and target value as input
Initialize variables for start, end, and middle indices
Use while loop to iterate until start is less than or equal to end
Graduating with honors, winning a hackathon, volunteering in a developing country
Graduated with honors from university with a degree in Computer Science
Won first place in a hackathon competition by developing a unique and innovative software solution
Volunteered in a developing country to help build schools and provide education to underprivileged children
I applied via campus placement at SIES Graduate School of Technology, Mumbai and was interviewed in Nov 2024. There were 3 interview rounds.
It was a little big which contains various rounds such quants, verbal, logical , english, etc.
I worked on a project to migrate on-premises infrastructure to the cloud for a large e-commerce company.
Designed and implemented cloud infrastructure using AWS services such as EC2, S3, and RDS.
Utilized Terraform for infrastructure as code to automate deployment and scaling.
Worked closely with development teams to ensure seamless integration of applications with cloud services.
I am a highly skilled Cloud Infrastructure Engineer with experience in designing, implementing, and managing cloud-based solutions.
Experienced in working with AWS, Azure, and Google Cloud Platform
Proficient in scripting languages such as Python and PowerShell
Strong understanding of networking and security principles
Certified in cloud technologies such as AWS Certified Solutions Architect or Microsoft Certified: Azure S
I am a highly skilled Cloud Infrastructure Engineer with a strong background in designing, implementing, and managing cloud-based solutions.
Experienced in setting up and maintaining cloud infrastructure using platforms like AWS, Azure, and Google Cloud
Proficient in scripting languages such as Python, Bash, and PowerShell for automation tasks
Skilled in monitoring and optimizing cloud resources for cost efficiency and pe...
Yes, I am willing to relocate for the right opportunity.
I am open to relocating for a position that aligns with my career goals and offers growth opportunities.
I have relocated in the past for work and am comfortable with the process.
I understand the importance of being flexible and adaptable in the tech industry, which may require relocation.
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
Java OOPs concepts are used in automation framework design for better code organization and reusability.
Encapsulation: Used to hide the internal implementation details of classes and provide access through methods.
Inheritance: Allows for code reuse by creating parent-child relationships between classes.
Polymorphism: Enables methods to behave differently based on the object they are called on.
Abstraction: Helps in defin...
OTP can be handled by generating, sending, and verifying it in automated tests.
Generate OTP using a random number generator
Send OTP to the user via email, SMS, or any other communication channel
Verify OTP entered by the user against the generated OTP
To start Appium in automation, you need to install Appium server, set up desired capabilities, and run the server.
Install Appium server using npm install -g appium
Set up desired capabilities in your test script
Start the Appium server using the command appium
Types of mobile apps include native apps, web apps, and hybrid apps.
Native apps are developed for specific platforms like iOS or Android
Web apps are accessed through a web browser and do not need to be downloaded from an app store
Hybrid apps combine elements of both native and web apps
Examples include Instagram (native), Twitter (web), and Uber (hybrid)
Program to remove duplicate letters in a string
Iterate through the string and keep track of seen characters in a set
Append characters to a new string only if they are not already in the set
Return the new string without duplicate letters
Swipe action in mobile devices can be performed using swipe() method in Appium or TouchAction class in Selenium.
Use swipe() method in Appium to perform swipe action in mobile devices
Alternatively, use TouchAction class in Selenium for swipe action
Specify the start and end coordinates for the swipe action
Adjust the duration and speed of the swipe as needed
Some of the top questions asked at the LTIMindtree interview -
The duration of LTIMindtree interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 2.9k interviews
Interview experience
based on 21k reviews
Rating in categories
Senior Software Engineer
21.3k
salaries
| ₹5.1 L/yr - ₹18.8 L/yr |
Software Engineer
16.2k
salaries
| ₹2 L/yr - ₹10 L/yr |
Module Lead
6.6k
salaries
| ₹7 L/yr - ₹25 L/yr |
Technical Lead
6.4k
salaries
| ₹9.4 L/yr - ₹36 L/yr |
Senior Engineer
4.4k
salaries
| ₹4.2 L/yr - ₹16.3 L/yr |
Cognizant
Capgemini
Accenture
TCS