i
Kyndryl
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.
I am interested in this job because of the opportunity to provide technical support and problem-solving for customers. I chose Kyndryl for its reputation for innovation and growth.
Opportunity to provide technical support and problem-solving for customers
Kyndryl's reputation for innovation and growth
Excited about the potential to learn and grow within the company
I am looking for a competitive salary that reflects my experience and skills in the technical support field.
Research industry standards for technical support salaries
Consider my level of experience and skills in the field
Be open to negotiation based on benefits and opportunities for growth
posted on 26 Dec 2024
I applied via LinkedIn
Kyndryl interview questions for popular designations
Java is a programming language used for developing applications. Static methods in Java are methods that belong to the class rather than an instance of the class.
Java is a popular programming language used for developing various types of applications.
Static methods in Java are methods that can be called without creating an instance of the class.
Static methods are commonly used for utility functions or methods that do n
Program to print prime numbers
Iterate through numbers and check if each number is prime
Use a nested loop to check divisibility by numbers less than the current number
Print the number if it is prime
Get interview-ready with Top Kyndryl Interview Questions
I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.
Abstraction is the concept of hiding complex implementation details and showing only the necessary features to the outside world.
Abstraction allows us to focus on what an object does rather than how it does it
Achieved through abstract classes and interfaces in object-oriented programming
Example: A car dashboard abstracts the internal workings of the car and provides only essential information to the driver
Hashtable is synchronized, while hashmap is not. Hashtable does not allow null keys or values, while hashmap does.
Hashtable is synchronized, while hashmap is not
Hashtable does not allow null keys or values, while hashmap does
Hashtable is a legacy class, while hashmap is a newer class
The get() method in HashMap retrieves the value associated with a specified key.
get() method takes a key as input and returns the value associated with that key in the HashMap.
Internally, get() uses the hash code of the key to find the corresponding bucket in the HashMap.
If multiple keys have the same hash code, get() uses the equals() method to find the correct key-value pair.
Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.
Normalization helps in minimizing data redundancy by dividing the database into multiple tables and defining relationships between them.
It ensures data integrity by avoiding update anomalies and inconsistencies.
There are different normal forms such as 1NF, 2NF, 3NF, BCNF, and 4NF, each with specific rules to fo...
Constraints are limitations or restrictions placed on a system or process.
Constraints define the boundaries within which a system must operate.
They can include limitations on resources, time, or functionality.
Examples of constraints in software engineering include memory limitations, processing speed, and input/output requirements.
Query to retrieve the 3rd highest salary from the employee table
Use the ORDER BY clause to sort salaries in descending order
Use the LIMIT clause to retrieve the 3rd highest salary
Traverse the linked list to find the 2nd last node and return its value.
Traverse the linked list while keeping track of the current and previous nodes.
Once at the end of the list, return the value of the previous node.
Use two variables to keep track of the smallest and second smallest numbers in the array.
Iterate through the array and update the variables accordingly.
Initialize the variables with the maximum possible integer value to start with.
Example: array = [5, 2, 8, 1, 3], smallest = 1, secondSmallest = 2.
I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.
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']
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.
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
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)
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.
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
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
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
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...
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
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...
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...
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...
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...
The monitoring tool used is Datadog.
Datadog is a popular monitoring tool used for infrastructure and application monitoring.
It provides real-time insights into the performance of servers, databases, applications, and more.
Datadog offers features like customizable dashboards, alerts, and integrations with various services.
Example: Datadog can be used to monitor server CPU usage, application response times, and database
I applied via Internal and was interviewed in Jul 2024. There were 2 interview rounds.
I applied via Company Website and was interviewed in Jul 2024. There were 3 interview rounds.
Just normal aptitude
Terraform code for creating an EC2 instance
Use the 'aws_instance' resource in Terraform
Specify the AMI, instance type, key pair, and security group in the resource block
Define any additional configurations like tags or user data
Run 'terraform init', 'terraform plan', and 'terraform apply' to create the EC2 instance
8 members took final round
Top trending discussions
Some of the top questions asked at the Kyndryl interview -
The duration of Kyndryl interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 177 interviews
Interview experience
based on 2.8k reviews
Rating in categories
Hyderabad / Secunderabad,
Chennai
+15-10 Yrs
Not Disclosed
System Administrator
1.3k
salaries
| ₹0 L/yr - ₹0 L/yr |
Associate Technical Engineer
635
salaries
| ₹0 L/yr - ₹0 L/yr |
Project Manager
622
salaries
| ₹0 L/yr - ₹0 L/yr |
Infrastructure Specialist
533
salaries
| ₹0 L/yr - ₹0 L/yr |
SME
435
salaries
| ₹0 L/yr - ₹0 L/yr |
IBM
Accenture
TCS
Wipro