Upload Button Icon Add office photos
Engaged 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 Data Scientist Interview Questions, Process, and Tips

Updated 22 Feb 2024

Kyndryl Senior Data Scientist Interview Experiences

1 interview 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...
  • 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 questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. They will ask the questions on your background and working experience

Interview Questionnaire 

1 Question

  • Q1. General Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

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

Round 1 - Coding Test 

They give some MCQ question from c#, .net,SQL, angular. Fizz Buzz type coding.

Round 2 - Technical 

(1 Question)

  • Q1. Basic oops concepts, splitter, 3 highest salary in SQL, procedure and functions difference. Basic questions of c#.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is not hard. They ask about your project and your role.

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic questions on testing.
  • Q2. Write sample code on some basic queries supplied during interview.
  • Ans. 

    Sample code for basic queries

    • Use SELECT statement to retrieve data from a table

    • Use WHERE clause to filter data based on conditions

    • Use ORDER BY clause to sort data in ascending or descending order

    • Use GROUP BY clause to group data based on a column

    • Use JOIN clause to combine data from multiple tables

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please have some knowledge on selenium testibg.

I applied via Referral and was interviewed before Jul 2021. There were 4 interview rounds.

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 - HR 

(1 Question)

  • Q1. Introduction confirmation about the interview schedule.
Round 3 - One-on-one 

(2 Questions)

  • Q1. Go through your resume
  • Q2. Testing core knowledge on applied domine.
Round 4 - HR 

(1 Question)

  • Q1. About the salary negotiation.

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared on basis information Domin on which role you are applied.

Interview Questionnaire 

1 Question

  • Q1. Prepare below topics

Interview Preparation Tips

Interview preparation tips for other job seekers -
Oops
Multi threading
Collections
Executors framework
Java 8 features

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions related to c, c++, data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Knowledge of C language and JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in your answers.

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

Interview Questionnaire 

1 Question

  • Q1. Why java is preferred? whats the benefit of functional programming and why introduced in java. what are wrapper classes, fibonaaci series , whats the use of join? what is threadinterrupted exception ? ho...
  • Ans. 

    Answers to various technical questions related to Java programming.

    • Java is preferred for its platform independence, object-oriented nature, and vast community support.

    • Functional programming in Java allows for more concise and readable code, and better support for parallel processing.

    • Wrapper classes are used to convert primitive data types into objects, and vice versa.

    • Fibonacci series is a sequence of numbers where each...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - even though interview was for a 5 years exp java developer, questions were from core java and basics. easy

Skills evaluated in this interview

Kyndryl Interview FAQs

How many rounds are there in Kyndryl Senior Data Scientist interview?
Kyndryl interview process usually has 1 rounds. The most common rounds in the Kyndryl interview process are Technical.
How to prepare for Kyndryl Senior Data Scientist 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 Analytical, Coding, Computer science, Machine Learning and Monitoring.
What are the top questions asked in Kyndryl Senior Data Scientist interview?

Some of the top questions asked at the Kyndryl Senior Data Scientist 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. What are the types of regression models, name them and explain t...read more

Tell us how to improve this page.

Kyndryl Senior Data Scientist Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Kyndryl Senior Data Scientist Salary
based on 8 salaries
₹22.4 L/yr - ₹52.1 L/yr
37% more than the average Senior Data Scientist Salary in India
View more details
System Administrator
1.3k salaries
unlock blur

₹2.9 L/yr - ₹12 L/yr

Project Manager
620 salaries
unlock blur

₹7.1 L/yr - ₹28.5 L/yr

Associate Technical Engineer
588 salaries
unlock blur

₹3.5 L/yr - ₹6.3 L/yr

Infrastructure Specialist
582 salaries
unlock blur

₹4.3 L/yr - ₹22.7 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.6
Compare

Optum Global Solutions

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