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
3.8

based on 20.4k Reviews

Filter interviews by

LTIMindtree IT System Administrator Interview Questions and Answers

Updated 5 May 2024

LTIMindtree IT System Administrator Interview Experiences

1 interview found

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

(1 Question)

  • Q1. What is exchange online
  • Ans. 

    Exchange Online is a cloud-based email hosting service provided by Microsoft as part of Office 365.

    • Cloud-based email hosting service

    • Part of Office 365 suite

    • Allows users to access emails, contacts, and calendars from anywhere

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There are two main sections: foundation and advanced. The foundation section consists of three subsections: quantitative, reasoning, and verbal. If you pass the foundation section but do not clear the advanced section, you will be considered for either the ninja role or the digital role during the interview process. The advanced section includes advanced aptitude questions and two coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Can you provide an introduction about yourself?
  • Q2. 3 to 4 questions based on database
  • Q3. 2 easy coding questions
  • Q4. Questions based on technology that I knew
  • Q5. Situation based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the first round, as it can be quite challenging; once you pass it and are selected for an interview, the subsequent process feels considerably easier.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

There were a total of seven sections: verbal ability, logical reasoning, arithmetic problems, verbal reasoning, puzzles, pseudocodes, and essay writing, with each section having its own cutoff scores.

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is the SQL query to retrieve the person with the highest salary?
  • Q2. Can you describe the projects you have worked on?
  • Q3. Write a query to merge 2 tables?
  • Q4. Tell me about the internship that you have done?
  • Q5. Behavioural questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. About technical operations .
  • Q2. What is your experience with Microsoft 365 and its documentation features?
Round 2 - HR 

(2 Questions)

  • Q1. Can you describe your past work experiences?
  • Q2. Your skills.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed before Feb 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Roles and responsibilities for system administrator
  • Q2. How to configure network printer?
  • Q3. What purpose of device manager?
  • Q4. How to create disk partition?
Round 2 - HR 

(1 Question)

  • Q1. Salary descision
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. Sql interview questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Case study about the given requirement
  • Q2. Springboot basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare spring boot question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain about patch management in Linux
  • Q2. After patching what are the issues you faced. How did you troubleshoot those issues.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Technical regarding OS, M365, Software and Hardware troubleshooting.
  • Q2. Admin tools, ticketing tools, itsm
Round 2 - One-on-one 

(2 Questions)

  • Q1. Vocabulary, communication skills, process knowledge
  • Q2. Roles and responsibilities, incident management
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion, job profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Try again and again and again. Don't lie on resume if you are going for tier 1 organisation.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via TCS and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What is hash technology?
  • Ans. 

    Hash technology is a method used to convert data into a fixed-size string of characters, typically used for data security and integrity.

    • Hash technology uses algorithms to generate a unique fixed-size string of characters from input data.

    • It is commonly used for data security, password storage, digital signatures, and data integrity verification.

    • Examples of hash algorithms include MD5, SHA-1, and SHA-256.

  • Answered by AI
  • Q2. What is block chain?
  • Ans. 

    Blockchain is a decentralized, distributed ledger technology used to securely record transactions across multiple computers.

    • Decentralized database

    • Consensus mechanism

    • Immutable record of transactions

    • Cryptographic security

    • Smart contracts

    • Examples: Bitcoin, Ethereum

  • Answered by AI
  • Q3. What is DML?
  • Ans. 

    DML stands for Data Manipulation Language, used to manage data in a database.

    • DML is a subset of SQL (Structured Query Language) used to insert, update, delete, and retrieve data in a database.

    • Examples of DML commands include INSERT, UPDATE, DELETE, and SELECT.

    • DML is essential for managing and manipulating data within a database system.

  • Answered by AI
  • Q4. Convert binay to decimal and viceversa.
  • Ans. 

    Binary to decimal conversion involves multiplying each digit by 2 raised to the power of its position.

    • To convert binary to decimal, start from the rightmost digit and multiply each digit by 2 raised to the power of its position.

    • Add all the results together to get the decimal equivalent.

    • For example, to convert binary 1011 to decimal: 1*2^3 + 0*2^2 + 1*2^1 + 1*2^0 = 11.

  • Answered by AI
  • Q5. Find max number in array?
  • Ans. 

    Iterate through array and compare each element to find the maximum number.

    • Iterate through the array using a loop.

    • Compare each element to a variable storing the current maximum number.

    • Update the variable if a larger number is found.

    • Return the maximum number at the end.

  • Answered by AI
  • Q6. Write basic html , for inserting image and create table.
  • Ans. 

    Basic HTML code for inserting image and creating a table

    • Use <img> tag to insert an image with src attribute

    • Use <table>, <tr>, <td> tags to create a table structure

    • Specify image source and table content within respective tags

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have concept of Oops, one programming language, DBMS and SQL, core engineering subjects and just know definition of recent technology
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its very easy
Basic maths questions learned up to 10
Basic Apptitude questions

Round 2 - Technical 

(5 Questions)

  • Q1. Tell me about your self Hi My name is Vikram Adithya I am an hard working and passionate engineering student currently perceiveing in gokaraju rangaraju institute of engineering and technology .I stay with...
  • Q2. Intervier asked about what kind of problems did you solved in leetcode? I said palindrome factorial matrix multiplication etc . Intervier said every one can solve this
  • Q3. He asked me about my project role i said I have done documentation in my project he said every one can do that
  • Q4. He asked me to write project code
  • Q5. He asked me any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer carefully in infosys
If you crack it it is easy to get hired in infosys.

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree IT System Administrator 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 IT System Administrator Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 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
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
LTIMindtree IT System Administrator Salary
based on 5 salaries
₹5.1 L/yr - ₹11 L/yr
33% more than the average IT System Administrator Salary in India
View more details

LTIMindtree IT System Administrator Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

3.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
21.3k salaries
unlock blur

₹4.7 L/yr - ₹18.6 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 L/yr

Technical Lead
6.5k salaries
unlock blur

₹9.3 L/yr - ₹37 L/yr

Senior Engineer
4.4k salaries
unlock blur

₹4.2 L/yr - ₹16.4 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.8
Compare

Capgemini

3.7
Compare

Accenture

3.9
Compare

TCS

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