Premium Employer

i

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

Kyndryl Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Kyndryl Senior Technical Lead Interview Questions and Answers for Experienced

Updated 20 Oct 2024

Kyndryl Senior Technical Lead Interview Experiences for Experienced

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - 15 yrs old 

(2 Questions)

  • Q1. Technical and hr round
  • Q2. Yes we discussed about technical
Round 2 - HR 

(1 Question)

  • Q1. Salary was discussed with me

Interview Preparation Tips

Interview preparation tips for other job seekers - Working for 17 yrs it was a good experience

Interview questions from similar companies

I applied via Approached by Company and was interviewed before May 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Short basic algorithms test

Round 2 - Technical 

(1 Question)

  • Q1. Java OOPS Concept Questions, Multithreading
Round 3 - HR 

(1 Question)

  • Q1. Team Management Skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay strong and firm, make sure they are convinced of your skills

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All basics and some advance questions of .net

Interview Preparation Tips

Interview preparation tips for other job seekers - Be genuine and honest and answer confidently

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is your technical strength?

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidate whatever he knows very well those part explain in details simple and short.
If you do not understand the question should not predict and tell the answer. You have to prepare advanced features and explain well if your not using you can't tell I didn't use yourself make space to learn new features Java and Microservice concept.

Technical Lead Interview Questions & Answers

Nagarro user image Ravinder Deshwal

posted on 13 Mar 2025

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Good core understanding
  • Q2. Architectural concept based
Interview experience
1
Bad
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-
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 - Technical 

(1 Question)

  • Q1. All core questions about java8 ,java,spring ,database,kafka,rabbitmq,datastructure, singleton,coding questions . Questions like how java adopted stream.. what is internally done to adopt collection to st...
Round 3 - Coding Test 

Code test which i hd not attended

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Tooo long interview 1 hr 50 minutes.
2. They are trying to find great developers like google Facebook but with minimum package.
3. Interviewer was wasting time n asking to develop classes which will behave same as readymade java classes . coding questions was too deep n time consuming.and while doing it he was constantly disturbing ..let developer decide his logic n write the code..
4. Wastage of time..

I appeared for an interview in Mar 2022.

Round 1 - Technical 

(2 Questions)

  • Q1. Scenario based technical question
  • Q2. Code Test , write pseudo code for problem
Round 2 - Coding Test 

Scenario based question and pseudo code for technical problem

Round 3 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Tough interview process and detail discussion

I applied via Instahyre and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Unix: 1)How we simply find files in directory 2)count of word by using grep command 3)how we kill the particular process 4)command for findout kernal version and on which operating system we worked on 5)w...
  • Ans. 

    Technical interview questions on Unix and SQL

    • To find files in a directory, use the 'find' command

    • To count words using grep, use the '-c' option

    • To kill a particular process, use the 'kill' command with the process ID

    • To find the kernel version and operating system, use the 'uname' command

    • The 'top' command is used to monitor system processes and resource usage

    • A zombie process is a process that has completed execution but ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. 1) project flow which I worked in previous organization 2)which linux operating system used 3)what is the application server in your project 4)what is the webserver 5)how you login to your application 6)w...
  • Ans. 

    Questions related to project flow, Linux OS, application and web server, troubleshooting, ticketing tool, and handling critical situations.

    • Worked on Agile methodology with JIRA as ticketing tool

    • Used Ubuntu as the Linux operating system

    • Tomcat was the application server and Apache was the web server

    • Logged in to the application using LDAP authentication

    • Performed troubleshooting by analyzing logs and using debugging tools

    • H...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident during interview , don't go with depth scenario while preparing because lot of confusion will occur. very basic questions needs to prepare and terminology most importent like interviewer come with very question in different way of asking. That is all about u r understanding so ..be cool and free when face interview ..and try attempt more interviews

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Is live data is life cycle aware. If it's aware what does ViewModel do?
  • Ans. 

    Yes

    • LiveData is lifecycle aware and can be used to observe changes in data.

    • ViewModel provides a way to store and manage UI-related data across configuration changes.

    • ViewModel can hold LiveData objects to provide data to the UI.

    • LiveData and ViewModel work together to ensure data consistency and prevent memory leaks.

  • Answered by AI
  • Q2. How does viewmodel survive when activity is destroyed on configuration?
  • Ans. 

    The ViewModel survives configuration changes by being retained by the system.

    • ViewModels are designed to survive configuration changes like screen rotations or language changes.

    • When an activity is destroyed and recreated, the ViewModel is not destroyed and retains its data.

    • The ViewModel is associated with the activity's lifecycle and is retained until the activity is finished.

    • The retained ViewModel instance can be acces...

  • Answered by AI
  • Q3. Advantage of mvp over mvc.
  • Ans. 

    MVP offers better separation of concerns and easier unit testing compared to MVC.

    • MVP separates the presentation layer from the business logic, making it easier to maintain and modify the codebase.

    • MVP allows for easier unit testing as the presenter can be tested independently from the view.

    • MVP provides better decoupling between components, enabling easier code reuse and scalability.

    • MVP promotes a clear separation of con...

  • Answered by AI
  • Q4. How does SSL pinning works?
  • Ans. 

    SSL pinning is a security technique that ensures a client only communicates with a server using a pre-defined public key.

    • SSL pinning involves hardcoding the server's public key in the client's code or configuration.

    • During the SSL handshake, the client checks if the server's public key matches the pinned key.

    • If the keys match, the connection is established; otherwise, it is rejected.

    • Pinning prevents man-in-the-middle at

  • Answered by AI
  • Q5. How do you achieve data security when saving data persistanly.
  • Ans. 

    Data security can be achieved through encryption, access controls, backups, and regular security audits.

    • Encrypt sensitive data using strong encryption algorithms.

    • Implement access controls to restrict unauthorized access to the data.

    • Regularly backup the data to prevent data loss.

    • Conduct regular security audits to identify and fix vulnerabilities.

    • Use secure protocols and communication channels for data transfer.

    • Implement...

  • Answered by AI
  • Q6. Where to save encription key?
  • Ans. 

    Encryption keys should be securely stored in a separate key management system.

    • Encryption keys should not be stored alongside the encrypted data.

    • Use a dedicated key management system (KMS) to store and manage encryption keys.

    • Implement strong access controls and authentication mechanisms for the KMS.

    • Consider using hardware security modules (HSMs) for added security.

    • Regularly rotate encryption keys to minimize the impact

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare your current implementation projected thoroughly.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

Use java 8 to find the first repeated character in a given string

Kyndryl Interview FAQs

How many rounds are there in Kyndryl Senior Technical Lead interview for experienced candidates?
Kyndryl interview process for experienced candidates usually has 2 rounds. The most common rounds in the Kyndryl interview process for experienced candidates are HR.
What are the top questions asked in Kyndryl Senior Technical Lead interview for experienced candidates?

Some of the top questions asked at the Kyndryl Senior Technical Lead interview for experienced candidates -

  1. Yes we discussed about techni...read more
  2. Technical and hr ro...read more

Tell us how to improve this page.

Kyndryl Senior Technical Lead Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more
Join Kyndryl Kyndryl is the world's largest provider of IT infrastructure services.
Kyndryl Senior Technical Lead Salary
based on 10 salaries
₹15.5 L/yr - ₹31 L/yr
10% less than the average Senior Technical Lead Salary in India
View more details

Kyndryl Senior Technical Lead Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

4.7

Work-life balance

4.0

Salary

4.8

Job security

4.7

Company culture

3.9

Promotions

4.7

Work satisfaction

Explore 2 Reviews and Ratings
System Administrator
1.3k salaries
unlock blur

₹2.9 L/yr - ₹12 L/yr

Associate Technical Engineer
654 salaries
unlock blur

₹4 L/yr - ₹6.6 L/yr

Project Manager
620 salaries
unlock blur

₹7.1 L/yr - ₹28.5 L/yr

Infrastructure Specialist
603 salaries
unlock blur

₹4.2 L/yr - ₹23 L/yr

SME
419 salaries
unlock blur

₹7.5 L/yr - ₹25.5 L/yr

Explore more salaries
Compare Kyndryl with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

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