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 Data Scientist Interview Questions, Process, and Tips for Experienced

Updated 22 Feb 2024

Kyndryl Senior Data Scientist Interview Experiences for Experienced

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

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Process related questions
  • Q2. Explain your whole career experience

Interview Preparation Tips

Interview preparation tips for other job seekers - It's good, all prices related questions are asked. Give decent hike on your current package, hiring process does take some time

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

Round 1 - HR 

(4 Questions)

  • Q1. My self , Previous work knowledge, Salary expectations.
  • Q2. Why you left last organisation?
  • Q3. What is your salary expectations ?
  • Q4. Where do you live at ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident no matter if your grammar is not perfect while communicating. Just be normal.

I applied via Referral and was interviewed before Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why i have select for this job. Give me a one reason.
  • Q2. Tell about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic, answer like a friendly manner, keep self confident.

Interview Questionnaire 

1 Question

  • Q1. Normal questions like 1)my self and about previous job related

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is Company payroll Process
  • Ans. 

    Company payroll process is the system used to manage employee compensation and benefits.

    • Payroll process includes calculating employee salaries, taxes, and deductions

    • It also involves managing employee benefits such as health insurance and retirement plans

    • Payroll process can be done in-house or outsourced to a third-party provider

    • It is important to ensure compliance with labor laws and regulations

    • Payroll process can be a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My Team members is very good

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 

4 Questions

  • Q1. What is ost and pst in Outlook, what is distribution list and mailbox, how to create new data file in Outlook, how to fix bsod issue in windows OS, what is bios and key to enter in bios, what is office 36...
  • Ans. 

    Questions related to Outlook, Windows OS, and Office 365.

    • OST and PST are file formats used by Outlook to store data.

    • Distribution list is a group of email addresses used for sending emails to multiple recipients.

    • Mailbox is a storage location for emails and other data in Outlook.

    • To create a new data file in Outlook, go to File > New > Outlook Data File.

    • BSOD issue in Windows OS can be fixed by updating drivers or running ...

  • Answered by AI
  • Q2. Current knowledge of windows os and it's update will help
  • Q3. Depth knowledge about Outlook
  • Q4. Overview of office 365 and it's working will help in ops round
  • Ans. 

    Office 365 is a cloud-based subscription service that provides access to various Microsoft applications and services.

    • Office 365 includes applications like Word, Excel, PowerPoint, and Outlook, as well as cloud services like OneDrive and SharePoint.

    • Users can access Office 365 from anywhere with an internet connection and can collaborate on documents in real-time.

    • Office 365 also offers various security and compliance fea...

  • Answered by AI

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

Interview Questionnaire 

1 Question

  • Q1. 3 rounds of interview happened. One is mostly decideble one that means 1 st one if ur able to clear then second one mostly roles and responsibilities and few basic questions like interview 1. 3 Rd round w...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident it's easy.

Kyndryl Interview FAQs

How many rounds are there in Kyndryl Senior Data Scientist interview for experienced candidates?
Kyndryl interview process for experienced candidates usually has 1 rounds. The most common rounds in the Kyndryl interview process for experienced candidates are Technical.
How to prepare for Kyndryl Senior Data Scientist interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Kyndryl Senior Data Scientist interview for experienced candidates -

  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 for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Kyndryl Kyndryl is the world's largest provider of IT infrastructure services.
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

Kyndryl Senior Data Scientist Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

3.0

Job security

5.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
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