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 Work with us arrow

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Kyndryl Interview Questions and Answers

Updated 22 Jun 2025
Popular Designations

140 Interview questions

An IBM i Administrator was asked 1w ago
Q. What are BRMS policies?
Ans. 

BRMS policies manage backup and recovery processes on IBM i systems, ensuring data integrity and availability.

  • BRMS (Backup, Recovery, and Media Services) automates backup tasks based on defined policies.

  • Policies can specify backup frequency, retention periods, and media management.

  • Example: A policy may dictate daily backups for critical data and weekly for less critical data.

  • Policies can also define recovery proce...

A Team Lead was asked 1mo ago
Q. What is TCP/IP?
Ans. 

TCP/IP is a set of communication protocols used for interconnecting network devices on the internet.

  • TCP (Transmission Control Protocol) ensures reliable data transmission by establishing a connection before data transfer.

  • IP (Internet Protocol) is responsible for addressing and routing packets of data between devices on a network.

  • TCP/IP is the foundation of the internet, enabling different devices and networks to c...

View all Team Lead interview questions
A Network Team Lead was asked 2mo ago
Q. What are the various BGP (Border Gateway Protocol) attributes and their significance?
Ans. 

BGP attributes are key parameters that influence route selection and path advertisement in the Border Gateway Protocol.

  • AS Path: Lists the Autonomous Systems a route has traversed, helping to prevent routing loops.

  • Next Hop: Indicates the next IP address to which packets should be sent to reach the destination.

  • Local Preference: Used to prefer one exit point over another within an AS, higher values are preferred.

  • Mult...

View all Network Team Lead interview questions
A Network Team Lead was asked 2mo ago
Q. What are the phases of IPsec?
Ans. 

IPsec operates in two main phases: Phase 1 establishes a secure channel, and Phase 2 negotiates the actual data transfer parameters.

  • Phase 1: Establishes a secure, authenticated channel using IKE (Internet Key Exchange).

  • Phase 1 can operate in two modes: Main Mode (more secure) and Aggressive Mode (faster).

  • Phase 2: Negotiates the IPsec Security Associations (SAs) for data transfer.

  • Phase 2 typically uses Quick Mode t...

View all Network Team Lead interview questions
A Network Support Engineer was asked 2mo ago
Q. What are your biggest strengths and weaknesses?
Ans. 

My biggest strength is problem-solving skills, while my weakness is sometimes over-analyzing issues.

  • Strength: Strong analytical skills - I can quickly diagnose network issues, as demonstrated when I resolved a major outage in under an hour.

  • Strength: Excellent communication - I effectively convey technical information to non-technical staff, ensuring everyone is on the same page.

  • Weakness: Over-analyzing - I tend to...

View all Network Support Engineer interview questions
A Workforce Management Lead was asked 2mo ago
Q. What is Resource Planning?
Ans. 

Resource planning involves forecasting and allocating resources effectively to meet organizational goals and optimize productivity.

  • Identifying resource needs based on project requirements and timelines.

  • Allocating human resources, such as assigning team members to specific tasks.

  • Managing financial resources by budgeting for projects and monitoring expenses.

  • Utilizing tools like Gantt charts or resource management so...

View all Workforce Management Lead interview questions
A Workforce Management Lead was asked 2mo ago
Q. What is forecasting?
Ans. 

Forecasting is the process of predicting future events or trends based on historical data and analysis.

  • Utilizes historical data to identify patterns, e.g., sales trends over the past year.

  • Involves statistical methods like time series analysis, e.g., using moving averages.

  • Can be applied in various fields, such as finance for predicting stock prices.

  • Helps in resource allocation, e.g., staffing needs based on project...

View all Workforce Management Lead interview questions
Are these interview questions helpful?
A Vmware System Administrator was asked 2mo ago
Q. How do you configure vMotion on a switch, and what are its requirements?
Ans. 

Configuring vMotion involves setting up networking and storage for seamless VM migration between hosts.

  • Ensure all ESXi hosts are connected to the same vSwitch for vMotion.

  • Create a dedicated VMkernel port for vMotion traffic with a unique IP.

  • Enable vMotion on the VMkernel port settings.

  • Verify that the MTU size is set to 9000 for Jumbo Frames if required.

  • Ensure proper network configuration to avoid latency issues du...

View all Vmware System Administrator interview questions
A Vmware System Administrator was asked 2mo ago
Q. How do you upgrade vCenter and its prerequisites?
Ans. 

Upgrading vCenter requires careful planning, prerequisites, and execution to ensure a smooth transition.

  • Check compatibility: Ensure your ESXi hosts and other components are compatible with the new vCenter version.

  • Backup: Always take a full backup of the vCenter Server and the database before starting the upgrade.

  • Review release notes: Understand new features and deprecated functionalities in the new version.

  • Upgrade...

View all Vmware System Administrator interview questions
A Vmware System Administrator was asked 2mo ago
Q. If your vCenter is down, will HA and DRS still work?
Ans. 

vCenter down affects management but HA and DRS can still function for VMs.

  • HA (High Availability) can restart VMs on other hosts if a host fails, independent of vCenter.

  • DRS (Distributed Resource Scheduler) can manage resource allocation based on existing rules, but requires vCenter for initial configuration.

  • If vCenter is down, HA can still monitor hosts and VMs, ensuring uptime.

  • DRS will not be able to make new reso...

View all Vmware System Administrator interview questions

Kyndryl Interview Experiences

198 interviews found

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

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(15 Questions)

  • Q1. Extract only India Players from dictionary (using list comprehension) CSK = {"Dhoni" : "India", "Du Plessis" : "South Africa", "RituRaj": "India", "Peterson" : "England", "Lara" : "West Indies"}
  • Ans. 

    Extract India players from a dictionary using list comprehension

    • Use list comprehension to filter out players with nationality as 'India'

    • Create a new list with only the India players

    • Example: [player for player, nationality in CSK.items() if nationality == 'India']

  • Answered by AI
  • Q2. Find Common Elements in three lists using sets arr1 = [1,5,10,20,40,80,100] arr2 = [6,7,20,80,100] arr3 = [3,4,15,20,30,70,80,120]
  • Ans. 

    Use sets to find common elements in three lists.

    • Convert the lists to sets for efficient comparison.

    • Use the intersection method to find common elements.

    • Return the common elements as a set or list.

  • Answered by AI
  • Q3. Check if you found any error in the below code: school_name = 'ABC School' def __init__(self, name, roll_no): self.name = name self.roll_no = roll_no def show(self)" print('Ins...
  • Ans. 

    The code contains several syntax and logical errors related to class definition and method implementation.

    • The class 'Student' is not defined, leading to a NameError.

    • The '__init__' method should be inside the 'Student' class.

    • The 'show' method has a syntax error; it should use ':' instead of '"'.

    • To access 'school_name', it should be referenced as 'self.school_name' or defined as a class variable.

  • Answered by AI
  • Q4. How do you print the 3, 5 and 7th row in a database (Python - use Pandas)
  • Ans. 

    Printing specific rows from a database using Pandas in Python

    • Use Pandas library to read the database into a DataFrame

    • Use iloc method to select specific rows by index

    • Print the selected rows

  • Answered by AI
  • Q5. Split Dataset in train, test and validation (import library and split dataset)
  • Ans. 

    Use scikit-learn library to split dataset into train, test, and validation sets

    • Import train_test_split from sklearn.model_selection

    • Specify test_size and validation_size when splitting the dataset

    • Example: X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

  • Answered by AI
  • Q6. Print Unique values in the dataset and delete the duplicate rows (SQL)
  • Ans. 

    Use DISTINCT keyword to print unique values and DELETE with a subquery to remove duplicate rows.

    • Use SELECT DISTINCT column_name FROM table_name to print unique values.

    • Use DELETE FROM table_name WHERE row_id NOT IN (SELECT MAX(row_id) FROM table_name GROUP BY column_name) to delete duplicate rows.

  • Answered by AI
  • Q7. Print rows where a certain criterion is met (ex - in a dataset of employees select the ones whose salary is greater than 100000 - in SQL)
  • Ans. 

    Use SQL SELECT statement with WHERE clause to filter rows based on a specific criterion.

    • Use SELECT statement with WHERE clause to specify the criterion (ex: salary > 100000)

    • Example: SELECT * FROM employees WHERE salary > 100000;

    • Ensure proper syntax and column names are used in the query

  • Answered by AI
  • Q8. Print rows with the second highest criterion value without using offset function in SQL
  • Ans. 

    Use subquery to find rows with second highest criterion value in SQL without using offset function.

    • Use a subquery to find the maximum criterion value

    • Then use another subquery to find the maximum value that is less than the maximum value found in the first subquery

    • Finally, select rows with the second highest criterion value

  • Answered by AI
  • Q9. Print rows with the same set of values in column (these are not duplicates row - just the duplicates values in a column)
  • Ans. 

    Print rows with the same set of values in a column

    • Identify unique sets of values in the column

    • Group rows based on these unique sets of values

    • Print out the rows for each unique set of values

  • Answered by AI
  • Q10. Difference between Power BI and Tableau
  • Ans. 

    Power BI is a Microsoft product focused on business intelligence and data visualization, while Tableau is a standalone data visualization tool.

    • Power BI is more user-friendly and integrates well with other Microsoft products.

    • Tableau is known for its powerful data visualization capabilities and flexibility in creating complex visualizations.

    • Power BI is often preferred by organizations already using Microsoft products, wh...

  • Answered by AI
  • Q11. Limitations of Power BI and Tableau
  • Ans. 

    Power BI and Tableau have limitations in terms of data connectivity, customization, and pricing.

    • Limited data connectivity options compared to other tools

    • Limited customization capabilities for advanced analytics

    • High pricing for enterprise-level features

    • Tableau has better visualization capabilities but can be more complex to use

    • Power BI is more user-friendly but may lack certain advanced features

  • Answered by AI
  • Q12. What are the types of regression models, name them and explain them
  • Ans. 

    Types of regression models include linear regression, logistic regression, polynomial regression, ridge regression, and lasso regression.

    • Linear regression: used to model the relationship between a dependent variable and one or more independent variables.

    • Logistic regression: used for binary classification problems, where the output is a probability value between 0 and 1.

    • Polynomial regression: fits a curve to the data by...

  • Answered by AI
  • Q13. Difference in Linear and Logistic Regression
  • Ans. 

    Linear regression is used for continuous variables, while logistic regression is used for binary outcomes.

    • Linear regression predicts continuous outcomes, while logistic regression predicts binary outcomes.

    • Linear regression uses a linear equation to model the relationship between the independent and dependent variables.

    • Logistic regression uses the logistic function to model the probability of a binary outcome.

    • Linear reg...

  • Answered by AI
  • Q14. Difference in Random Forest and Decision Tree
  • Ans. 

    Random Forest is an ensemble method using multiple decision trees, while Decision Tree is a single tree-based model.

    • Random Forest is a collection of decision trees that are trained on random subsets of the data.

    • Decision Tree is a single tree structure that makes decisions by splitting the data based on features.

    • Random Forest reduces overfitting by averaging the predictions of multiple trees.

    • Decision Tree can be prone t...

  • Answered by AI
  • Q15. What is ETL and what are the types or examples of ETL tools
  • Ans. 

    ETL stands for Extract, Transform, Load. It is a process of extracting data from various sources, transforming it into a usable format, and loading it into a target database.

    • ETL tools include Informatica PowerCenter, Talend, Apache Nifi, Microsoft SQL Server Integration Services (SSIS), and IBM InfoSphere DataStage.

    • Extract: Data is extracted from various sources such as databases, files, APIs, etc.

    • Transform: Data is cl...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Kyndryl Senior Data Scientist interview:
  • Python
  • Pandas
  • Power Bi
  • Tableau
  • scikit
  • SQL
  • matplotlib
Interview preparation tips for other job seekers - Be genuine about how much you know. Interviewer will ask to introduce candidates and will ask how much they know about Data Science and how much does the candidate rank themselves on a scale of 10 in Python & SQL
JD does mention about TensorFlow and R, but those languages are not important and are only an advantage to the candidate's profile. Mainly the interviewer will be looking for someone who has a decent programming skill and knows about regression models which is very important.
There will be 2 Interviewers one of them will be asking Python & Regression model questions and the other one SQL ones along with Power BI and Tableau overview

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. General questions on cybersecurity. They are looking pure technical skilled parson.
  • Q2. What is cybersecurity?
  • Ans. 

    Cybersecurity is the practice of protecting systems, networks, and data from digital attacks and unauthorized access.

    • Involves measures to safeguard information technology assets.

    • Includes practices like encryption, firewalls, and intrusion detection systems.

    • Examples of threats include malware, phishing, and ransomware attacks.

    • Cybersecurity is crucial for protecting sensitive data in sectors like finance and healthcare.

  • Answered by AI
Round 2 - No second round 

(2 Questions)

  • Q1. Didn’t conducted 2nd round. Actually there was no position for band 7. Formality purpose they took interview for me
  • Q2. No question

Interview Preparation Tips

Interview preparation tips for other job seekers - Kyndryl is currently experiencing no growth, with many projects being moved out. They have implemented a POD system and are reducing their workforce.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the current vesrion of Microsoft windows Server? What is Hyper-V? What is Active Directory? What is Dns? What is Dhcp? What is wsus? What is current versuon Client windows Operating system re...
  • Ans. 

    The current version of Microsoft Windows Server is Windows Server 2019. Hyper-V is a virtualization platform. Active Directory is a directory service. DNS is a system that translates domain names to IP addresses. DHCP is a network protocol that assigns IP addresses to devices. WSUS is Windows Server Update Services. The current version of client Windows operating system is Windows 10.

    • Windows Server 2019 is the latest v...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is vmware vsphere? What is Drs in Vmware? What is High availability in ware? What is Fault Tolerance in Vmware?
  • Ans. 

    VMware vSphere is a virtualization platform that provides virtualization, management, resource optimization, and more.

    • DRS (Distributed Resource Scheduler) in VMware is a feature that automatically balances computing workloads across a cluster of ESXi hosts.

    • High availability in VMware ensures that virtual machines are restarted on another host in case of a host failure.

    • Fault Tolerance in VMware provides continuous avail...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What is Microsoft Azure Cloud?
  • Ans. 

    Microsoft Azure Cloud is a cloud computing service provided by Microsoft, offering a variety of services and resources for building, deploying, and managing applications.

    • Provides infrastructure as a service (IaaS), platform as a service (PaaS), and software as a service (SaaS) offerings

    • Offers services such as virtual machines, databases, AI and machine learning tools, and more

    • Allows for scalability, flexibility, and co...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. What is Fsmo riles in Active Directoryand what are those?
  • Ans. 

    FSMO stands for Flexible Single Master Operations. They are specialized roles in Active Directory that handle specific tasks.

    • There are 5 FSMO roles: Schema Master, Domain Naming Master, RID Master, PDC Emulator, and Infrastructure Master.

    • Each FSMO role is responsible for a specific aspect of the Active Directory environment.

    • For example, the PDC Emulator role handles password changes and time synchronization within a do...

  • Answered by AI
Round 5 - Technical 

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview round is good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What do you know about Service Delivery?
  • Ans. 

    Service Delivery involves providing services to customers in a timely and efficient manner.

    • Service Delivery focuses on meeting customer needs and expectations

    • It involves ensuring services are delivered on time and within budget

    • Service Delivery often includes managing relationships with customers and stakeholders

    • Examples of Service Delivery include IT support, logistics, and customer service

  • Answered by AI
  • Q2. What is the difference between Incident and Problem?
  • Ans. 

    Incident is an unplanned event that disrupts or degrades a service, while Problem is the underlying cause of one or more incidents.

    • Incident is a specific event that causes an interruption or reduction in the quality of a service.

    • Problem is the root cause of one or more incidents and is identified through the analysis of incidents.

    • Incidents are typically resolved quickly to restore service, while problems require invest...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you manager your work under pressure?
  • Ans. 

    I prioritize tasks, stay organized, communicate effectively, and remain calm to manage work under pressure.

    • Prioritize tasks based on urgency and importance

    • Stay organized by creating to-do lists and setting deadlines

    • Communicate effectively with team members and stakeholders to manage expectations

    • Remain calm by taking deep breaths and focusing on solutions rather than problems

  • Answered by AI
  • Q2. Prioritize your work and complete it.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is DNS Dns is a domain name system And is it work name to IP conversion
  • Ans. 

    DNS is a domain name system that translates domain names to IP addresses.

    • DNS stands for Domain Name System

    • It translates human-readable domain names (like www.example.com) to IP addresses (like 192.168.1.1)

    • DNS helps in locating websites and other resources on the internet

    • DNS operates through a distributed database system that stores domain names and their corresponding IP addresses

  • Answered by AI
  • Q2. What is DHCP Dynamic host configuration protocol It is used for automatically assigning IP address to the multiple pcs
  • Ans. 

    DHCP is a protocol used to automatically assign IP addresses to devices on a network.

    • DHCP eliminates the need for manual IP address configuration on each device

    • It helps in efficient management of IP addresses in a network

    • DHCP servers lease IP addresses to devices for a specific period of time

    • Example: When a new device connects to a network, DHCP assigns it an available IP address

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to start you carrer in support then you can prepare all application traboulshooting like
Sap maconomy mo (media ocean)
Network traboulshooting
Hardware software traboulshooting
System configuration
Patch management
Antivirus
Firewall
Console cable
Switching routing
AP knowledge
IP addressing knowledge
Ticketing tool knowledge of service now
Communication
Dedication for learning
Ready to work with 24/7
Whenever required support
You can reached to the office
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Project management related, experience, current trends, certifications etc
Round 2 - One-on-one 

(1 Question)

  • Q1. Project management related questions on how challenges were handled and others with another interviewer 2
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion with a Senior Manager
Round 4 - HR 

(1 Question)

  • Q1. General HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is a standard process and will consist of multiple rounds
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Roles & responsibilities in WAF
  • Ans. 

    A Web Application Firewall (WAF) is a security solution that monitors and filters HTTP traffic between a web application and the Internet.

    • Monitoring and filtering HTTP traffic to protect against common web application attacks such as SQL injection, cross-site scripting (XSS), and cross-site request forgery (CSRF)

    • Configuring and maintaining rules to block malicious traffic while allowing legitimate traffic to pass throu...

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Compatibility with the job role and current experience
  • Ans. 

    I have extensive experience in network security and have successfully implemented various security measures in my previous roles.

    • I have a strong background in network security protocols and technologies

    • I have experience in implementing firewalls, intrusion detection systems, and VPNs

    • I have successfully managed security incidents and conducted security audits

    • I have a track record of staying up-to-date with the latest se...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Will be able to do rotational shifts

Interview Preparation Tips

Topics to prepare for Kyndryl Network Security Engineer interview:
  • WAF
  • Firewalls
  • Load Balancers
  • Security Policies
  • DNS
  • Virtual Wire
Interview preparation tips for other job seekers - Be clear about your work experience. Need to know in depth about what you do and how you do, even the concepts and basics.

SDM Interview Questions & Answers

user image Anonymous

posted on 5 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company

Round 1 - HR 

(1 Question)

  • Q1. Work experience
  • Ans. 

    I have diverse work experience in project management, team leadership, and process optimization across various industries.

    • Led a cross-functional team to successfully launch a new product, resulting in a 20% increase in market share.

    • Implemented Agile methodologies in my previous role, which improved project delivery times by 30%.

    • Conducted training sessions for team members, enhancing their skills and boosting overall te...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Walk me through your day to day task
  • Ans. 

    As an SDM, my day involves team management, project oversight, and stakeholder communication to ensure successful project delivery.

    • Start the day with a team stand-up meeting to discuss progress and blockers.

    • Review project timelines and adjust resources as needed to meet deadlines.

    • Conduct one-on-one meetings with team members to provide support and feedback.

    • Collaborate with stakeholders to gather requirements and ensure...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. How will you manage a team with a average worker
  • Ans. 

    Managing a team with an average worker involves motivation, skill development, and fostering collaboration for overall team success.

    • Identify strengths: Assess the average worker's strengths and leverage them in team tasks, such as assigning them roles that suit their skills.

    • Set clear goals: Establish specific, measurable objectives for the team, ensuring the average worker understands their contribution to the overall ...

  • Answered by AI

Associate Director Interview Questions & Answers

user image Mamta Raj Priyadarshini

posted on 26 Dec 2024

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

Multiple questions are given to evaluate how you collaborate with others to reach a decision.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is your area of interest, and how well-informed are you about various technologies and other aspects of your work?
  • Ans. 

    My area of interest is artificial intelligence and machine learning. I am well-informed about various technologies and stay updated through continuous learning.

    • I have a strong interest in artificial intelligence and machine learning, and have completed several projects in this field.

    • I regularly attend workshops, seminars, and online courses to stay updated on the latest technologies and trends.

    • I actively participate in...

  • Answered by AI
  • Q2. What is your area of focus, and how do you propose to implement innovative or out-of-the-box techniques to drive change?
  • Ans. 

    My area of focus is strategic planning and implementation. I propose to use data-driven decision-making and cross-functional collaboration to drive change.

    • Utilize data analytics to identify key trends and opportunities for improvement

    • Implement agile methodologies to quickly adapt to changing market conditions

    • Foster a culture of innovation by encouraging team members to think creatively and share ideas

    • Collaborate with s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be authentic and communicate based on your own experiences.

Agile Coach Interview Questions & Answers

user image Anonymous

posted on 26 Dec 2024

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

(2 Questions)

  • Q1. Can you explain the difference between TCP and UDP , and in which scenarios you would use each
  • Ans. 

    TCP is a connection-oriented protocol that ensures reliable data delivery, while UDP is a connectionless protocol that focuses on speed.

    • TCP is reliable and ensures data delivery by establishing a connection before sending data.

    • UDP is faster but less reliable as it does not establish a connection before sending data.

    • TCP is commonly used for applications that require reliable data transmission, such as web browsing, emai...

  • Answered by AI
  • Q2. What steps would you take to troubleshoot a user's system that cannot connect to the internet
  • Ans. 

    To troubleshoot a user's system that cannot connect to the internet, I would follow these steps

    • Check if the internet connection is working on other devices

    • Restart the router and modem

    • Check network settings on the user's system

    • Run network diagnostics or troubleshoot network connection

    • Update network drivers or reset network settings

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Emphasise on Continuous Learning
Leverage Networking
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Network infrastructure deployments questions
  • Q2. Project management questions

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Kyndryl?
Ask anonymously on communities.

Kyndryl Interview FAQs

How many rounds are there in Kyndryl interview?
Kyndryl interview process usually has 2-3 rounds. The most common rounds in the Kyndryl interview process are Technical, One-on-one Round and HR.
How to prepare for Kyndryl interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Kyndryl. The most common topics and skills that interviewers at Kyndryl expect are Troubleshooting, Windows, Linux, Agile and Unix.
What are the top questions asked in Kyndryl interview?

Some of the top questions asked at the Kyndryl interview -

  1. Print rows where a certain criterion is met (ex - in a dataset of employees sel...read more
  2. Extract only India Players from dictionary (using list comprehension) CSK = {"D...read more
  3. How do you print the 3, 5 and 7th row in a database (Python - use Pand...read more
What are the most common questions asked in Kyndryl HR round?

The most common HR questions asked in Kyndryl interview are -

  1. Where do you see yourself in 5 yea...read more
  2. What are your salary expectatio...read more
  3. Why are you looking for a chan...read more
How long is the Kyndryl interview process?

The duration of Kyndryl interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 211 interview experiences

Difficulty level

Easy 21%
Moderate 73%
Hard 6%

Duration

Less than 2 weeks 58%
2-4 weeks 26%
4-6 weeks 11%
6-8 weeks 2%
More than 8 weeks 3%
View more
Join Kyndryl Kyndryl is the world's largest provider of IT infrastructure services.

Interview Questions from Similar Companies

Genpact Interview Questions
3.8
 • 3.4k Interviews
DXC Technology Interview Questions
3.7
 • 836 Interviews
Nagarro Interview Questions
4.0
 • 791 Interviews
NTT Data Interview Questions
3.8
 • 656 Interviews
Publicis Sapient Interview Questions
3.5
 • 642 Interviews
GlobalLogic Interview Questions
3.6
 • 627 Interviews
EPAM Systems Interview Questions
3.7
 • 569 Interviews
View all

Kyndryl Reviews and Ratings

based on 3.2k reviews

4.0/5

Rating in categories

3.9

Skill development

4.1

Work-life balance

3.5

Salary

3.7

Job security

3.9

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 3.2k Reviews and Ratings
ELK Stack Data Engineer

Mumbai

6-10 Yrs

Not Disclosed

Delivery Partner

Bangalore / Bengaluru

12-20 Yrs

Not Disclosed

Service Management

Gurgaon / Gurugram

0-4 Yrs

Not Disclosed

Explore more jobs
System Administrator
1.3k salaries
unlock blur

₹4 L/yr - ₹12.2 L/yr

Infrastructure Specialist
723 salaries
unlock blur

₹5.8 L/yr - ₹25 L/yr

Associate Technical Engineer
693 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Project Manager
641 salaries
unlock blur

₹7.1 L/yr - ₹28 L/yr

SME
453 salaries
unlock blur

₹10 L/yr - ₹26 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
write
Share an Interview