i
LTIMindtree
Filter interviews by
404 status code indicates resource not found, while 405 status code indicates method not allowed. SOAP is a protocol for exchanging structured information, while REST is an architectural style for designing networked applications.
404 status code is returned when the server cannot find the requested resource, while 405 status code is returned when the method used in the request is not allowed for the specified resource.
...
Use test automation tools to rerun only failed test cases.
Utilize test automation tools like Selenium or JUnit to rerun only failed test cases.
Analyze test results to identify failed test cases and selectively rerun them.
Implement a continuous integration system to automatically rerun failed test cases.
Use version control to track changes in test cases and identify failures.
Consider implementing a test case management
Severity refers to the impact of a defect on the system, while priority refers to the urgency of fixing the defect.
Severity is the measure of how serious a defect is in terms of its impact on the system functionality.
Priority is the measure of how urgently a defect needs to be fixed.
Severity is usually categorized as low, medium, high, or critical based on the impact on the system.
Priority is usually categorized as low...
posted on 27 Apr 2024
I applied via Company Website and was interviewed before Dec 2023. There were 6 interview rounds.
Fundamental skills in aptitude and programming.
Basic questions regarding sorting and other topics.
I was asked to discuss applications(Apps).
Yes, I am ready to relocate to my base location.
I am flexible and willing to relocate for the right opportunity.
I have experience relocating for previous job positions.
I have already researched the base location and am comfortable with the move.
Some assignment questions were shared with us, and after completing them, we received our joining date.
What people are saying about LTIMindtree
I applied via Approached by Company and was interviewed in Sep 2022. There were 3 interview rounds.
Blank video display can have varying severity depending on the context
If the video is critical for a medical diagnosis, the severity can be high
If the video is for entertainment purposes, the severity can be low
If the video is for a business presentation, the severity can be moderate
The severity can also depend on the number of users affected and the duration of the issue
The severity of a blocked contact seeing your status depends on the sensitivity of the information being shared.
If the status is something harmless like 'available' or 'busy', the severity is low.
If the status reveals sensitive information like location or personal details, the severity is high.
The severity can also depend on the relationship with the blocked contact and the potential consequences of them seeing the st...
LTIMindtree interview questions for designations
I applied via Naukri.com and was interviewed before Dec 2023. There was 1 interview round.
How can duplicates be found in a list of arrays?
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
A Java program to count the occurrences of the letter 'l' in the string 'Hello world'.
Create a Java program with a main method.
Initialize a String variable with the value 'Hello world'.
Use a loop to iterate through each character in the string and count the occurrences of the letter 'l'.
Print the count of 'l' at the end.
Reverse the characters of each word in a given string
Split the input string into an array of words
Reverse each word in the array
Join the reversed words back into a single string
Comparator is an interface used to sort objects, while Comparable is an interface used to compare objects for natural ordering.
Comparator is used to define custom sorting logic for objects, while Comparable is used for natural ordering based on the class's implementation of compareTo() method.
Comparator can be used to sort objects of different classes, while Comparable is implemented within the class itself.
Example: So...
Lambda expression is a concise way to represent an anonymous function in programming languages.
Lambda expressions are used to create small, inline functions without a formal definition.
They are commonly used in functional programming languages like Python, Java, and C#.
Lambda expressions can be used to simplify code and make it more readable.
Example: (x, y) -> x + y is a lambda expression that takes two parameters a
Constructor chaining is the process of calling one constructor from another constructor in a class.
Allows reusing code and avoiding duplication
Can be achieved using 'this' keyword in the constructor
Helps in initializing objects with different parameters
Handle notifications in mobile automation by using automation tools to interact with notifications, verify content, dismiss or respond to them.
Use automation tools like Appium or Espresso to interact with notifications
Verify the content of notifications by extracting text or images
Dismiss notifications to continue with test execution
Respond to notifications if required for test scenarios
Handle different types of notifi...
Use platform-specific locators or conditional statements to handle different element xpaths in iOS and Android apps.
Use platform-specific locators like accessibility id for iOS and resource id for Android
Implement conditional statements to switch between different xpaths based on the platform
Utilize Appium's platformName capability to identify the platform and adjust the element xpath accordingly
TestNG annotations include @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite
@Test - denotes a test method
@BeforeMethod - runs before each test method
@AfterMethod - runs after each test method
@BeforeClass - runs before the first test method in the current class
@AfterClass - runs after the last test method in the current class
@BeforeSuite - runs before all tests in the suite
@AfterSu
pom.xml is a configuration file used in Maven projects to define project settings and dependencies.
pom.xml stands for Project Object Model XML
It is used in Maven projects to manage project configuration, build settings, and dependencies
Dependencies are mentioned inside the <dependencies> tag in pom.xml
Each dependency is specified with <groupId>, <artifactId>, and <version>
I applied via Naukri.com and was interviewed in Nov 2024. There were 4 interview rounds.
Can you recommend any free website for taking an online carrier aptitude test and recieving a detailed report on sutaible job options.
What is the best resource to learn data structure and algorithm(must contain practice assignments too)? I have stumbled across Coursera,but does it cover all essential details about DSA?
I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.
As a Quality Engineer in my current project, my roles and responsibilities include ensuring compliance with quality standards, conducting quality audits, analyzing data to identify areas for improvement, and implementing corrective actions.
Ensuring compliance with quality standards and regulations
Conducting quality audits to identify areas for improvement
Analyzing data to track quality metrics and trends
Implementing co...
Smoke testing is a quick test to check if the software build is stable, while sanity testing is a more thorough test to check specific functionalities.
Smoke testing is done to ensure the critical functionalities of the software are working fine after a build, while sanity testing is done to verify specific features or functionalities.
Smoke testing is usually done before detailed testing, while sanity testing is done af...
In bug triage meetings, I analyze reported bugs, prioritize them based on severity and impact, assign them to appropriate team members, and track their resolution.
Analyze reported bugs to understand the root cause and impact
Prioritize bugs based on severity and impact on users
Assign bugs to appropriate team members for resolution
Track the progress of bug resolution and ensure timely closure
Address conflicts by facilitating open communication, understanding both perspectives, and finding a mutually agreeable solution.
Encourage open communication between Dev and QA teams to understand each other's perspectives
Review the bug reports together to identify the root cause of the conflict
Facilitate discussions to reach a mutually agreeable solution, considering the impact on the project timeline and quality
Estab...
Seeking new challenges and growth opportunities
Desire for career advancement
Looking for a more challenging role
Seeking opportunities for professional development
Company restructuring or downsizing
Relocation to a new area
I have experience in implementing lean manufacturing principles in a previous role.
Implemented 5S methodology to improve organization and efficiency in the workplace
Led Kaizen events to identify and eliminate waste in production processes
Trained team members on lean principles and continuous improvement techniques
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.
Program to count consecutive characters in a string
Iterate through the string and compare each character with the next one
Maintain a count for each character and append to the output string when a different character is encountered
Example: input 'aabbccc' -> output 'a2b2c3'
Dynamic xpath is a way to locate elements on a web page based on changing attributes or positions.
Use functions like contains(), starts-with(), or ends-with() to create dynamic xpaths
Avoid using indexes in xpaths as they can change with page updates
Consider using unique attributes or text within the element to create a reliable xpath
PUT is used to update or replace an entire resource, while PATCH is used to update specific fields of a resource.
PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.
PATCH is not necessarily idempotent, as multiple identical requests may have different effects.
PUT requires the client to send the entire updated resource, while PATCH only requires the client to send the spe
Interview experience
based on 25 reviews
Rating in categories
Senior Software Engineer
21.2k
salaries
| ₹4.7 L/yr - ₹18.5 L/yr |
Software Engineer
16.2k
salaries
| ₹2 L/yr - ₹10 L/yr |
Module Lead
6.7k
salaries
| ₹7 L/yr - ₹25 L/yr |
Technical Lead
6.5k
salaries
| ₹9.3 L/yr - ₹37 L/yr |
Senior Engineer
4.4k
salaries
| ₹4.2 L/yr - ₹16.3 L/yr |
Cognizant
Capgemini
Accenture
TCS