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 Software Engineer Interview Questions, Process, and Tips

Updated 17 May 2024

Kyndryl Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(8 Questions)

  • Q1. What is abstraction and how can we achieve it?
  • Ans. 

    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

  • Answered by AI
  • Q2. Difference between hashtable and hashmap
  • Ans. 

    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

  • Answered by AI
  • Q3. How get() works insterally in hashmap
  • Ans. 

    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.

  • Answered by AI
  • Q4. What is normalization?
  • Ans. 

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

  • Answered by AI
  • Q5. What are constraints?
  • Ans. 

    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.

  • Answered by AI
  • Q6. Write a query to get 3rd highest salary from the employee table
  • Ans. 

    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

  • Answered by AI
  • Q7. Write a code to get 2nd last node and its value from the singly linked list.
  • Ans. 

    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.

  • Answered by AI
  • Q8. You have an array of integer and retrieve the 2 smallest number from it without sorting the array.
  • Ans. 

    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.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Kyndryl Software Engineer interview:
  • java basics
  • Data Structures
  • OOPS
  • SQL
  • SQL Queries
  • Algorithms
Interview preparation tips for other job seekers - Prepare problem sets mostly based on data structure and algorithm.

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Explain over all experience
  • Q2. Asked question on Core and advance java topic
Round 2 - Technical 

(2 Questions)

  • Q1. Some advance topic of Java
  • Q2. DSA
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Relocation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Java programs related to strings
  • Q2. Collections question in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice well on java programs
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows for code reusability by creating a new class based on an existing class

    • Derived class (subclass) inherits properties and behaviors from a base class (superclass)

    • Can have multiple levels of inheritance, creating a hierarchy of classes

    • Example: Animal class can be a base class with Dog and Cat

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q3. Write a code for string reverse
  • Ans. 

    Code to reverse a string using array of characters

    • Iterate through half of the string and swap characters from start and end

    • Use a temporary variable to store the character being swapped

    • Handle edge cases like empty string or single character string

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Brief about yourself and some basic technical questions.
Round 2 - Technical 

(1 Question)

  • Q1. Questions regarding the data pipeline and spark hive hadoop and SQL queries
Round 3 - Behavioral 

(1 Question)

  • Q1. Some basic questions on process of agile and some techno-managerial questions, and individual confidence check.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write a Java String program to replace the characters. Write a Java program for Encapsulation. What is the difference between Comparator and Comparable? In between an Interview, the screen was abruptly cl...
  • Ans. 

    Java String program to replace characters, Encapsulation program, Comparator vs Comparable difference

    • For Java String program to replace characters, use the replace() method to replace specific characters in a string.

    • For Encapsulation in Java, use private access modifiers to restrict access to class variables and use public getter and setter methods to access and modify them.

    • Comparator and Comparable are interfaces used...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well to attend the interview with Publicis Sapient.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 

(2 Questions)

  • Q1. Interview based on resume
  • Q2. Oop concept? Keyword? Python advantage? Polymorphism

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while speaking. Prepare with resume. Oops concept, basic coding skills, c programming to find index
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is DSA used for?
  • Ans. 

    DSA is used for efficient data organization and manipulation in computer algorithms.

    • DSA stands for Data Structures and Algorithms

    • It is used to optimize the performance of computer algorithms

    • DSA helps in efficient data organization and manipulation

    • Examples of DSA include arrays, linked lists, trees, graphs, and sorting algorithms

  • Answered by AI
  • Q2. What is programming language used for?
  • Ans. 

    Programming languages are used to write instructions for computers to execute tasks and solve problems.

    • Programming languages are used to create software applications, websites, and games.

    • They are used to automate tasks and processes, such as data analysis and machine learning.

    • Programming languages are also used in scientific research, financial analysis, and engineering.

    • Examples of programming languages include Java, P

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

There were 2 questions
One could be solved using hashing
Second one through backtracking

Round 3 - Technical 

(1 Question)

  • Q1. Question on computer fundamentals and 2 coding questions
Round 4 - HR 

(1 Question)

  • Q1. Basic HR questions this was 5 mins in total

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare CS fundamentals well,Keep practicing DSA every day even if you do 1 question per day that will take you long way don't underestimate the power of compounding

Software Engineer Interview Questions & Answers

UST user image Anil Shrivastava

posted on 1 Aug 2022

I applied via Naukri.com and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(10 Questions)

  • Q1. Tell me brief about your self?
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java and JavaScript.

    • 5 years of experience in software engineering

    • Proficient in Java and JavaScript

    • Developed web applications using various frameworks like Spring and React

    • Strong problem-solving and analytical skills

    • Experience with database management systems like MySQL and MongoDB

  • Answered by AI
  • Q2. My Name is ABC, My over all experience is 14 Years, I am working with current company since 12 years on Business Intelligence tool, my past experience also on Business intelligence. currently i am working ...
  • Q3. What You Like in Current Role in Project?
  • Ans. 

    I enjoy the collaborative nature of my current role and the opportunity to learn new technologies.

    • Working with a team to solve complex problems

    • Learning new technologies and techniques

    • Contributing to the development of innovative solutions

    • Having the opportunity to mentor and learn from others

    • Being involved in the full software development lifecycle

    • Working on projects that have a positive impact on society

  • Answered by AI
  • Q4. Well Project Team Lead i am and handling technical work with team and distributing reports to the team on everyday bases
  • Q5. In which tool you are using?
  • Ans. 

    I am currently using Visual Studio Code as my primary tool for software development.

    • Visual Studio Code is a lightweight and versatile code editor.

    • It has a wide range of extensions and plugins available for customization.

    • It supports multiple programming languages and has built-in Git integration.

    • Other tools I have experience with include Eclipse, IntelliJ IDEA, and Sublime Text.

  • Answered by AI
  • Q6. I am using BI tool Cognos for Reporting, Cube, and FM
  • Q7. Are you traveling onsite for project work?
  • Ans. 

    Yes, I am willing to travel onsite for project work.

    • I have experience traveling onsite for previous projects.

    • I am comfortable with the challenges and logistics of traveling for work.

    • I understand the importance of face-to-face collaboration and client interaction.

    • I am flexible and adaptable to different work environments and cultures.

    • I am willing to travel as required by the project.

  • Answered by AI
  • Q8. Yes I got opportunity's for on site work but currently I am not traveling onsite
  • Q9. What is Cube and why you are using this in project?
  • Ans. 

    A cube is a three-dimensional geometric shape with six square faces.

    • A cube is a regular polyhedron with equal edge lengths and angles.

    • It has six faces, twelve edges, and eight vertices.

    • Cubes are used in various applications, including computer graphics, physics simulations, and data analysis.

    • In computer graphics, cubes are often used to represent 3D objects and scenes.

    • In physics simulations, cubes can be used to model ...

  • Answered by AI
  • Q10. Cube is Cognos BI part using to develop serer based ad hock reporting
Round 2 - HR 

(10 Questions)

  • Q1. What is your current salary?
  • Ans. 

    I am unable to provide my current salary.

    • I am unable to disclose my current salary due to confidentiality agreements.

    • My current salary is subject to a non-disclosure agreement.

    • I prefer not to disclose my current salary at this time.

  • Answered by AI
  • Q2. Well my salary is 20 LPA in my Current Company
  • Q3. How long you are working with current company ?
  • Ans. 

    I have been working with my current company for 3 years.

    • I joined the company in 2018.

    • During my time here, I have worked on various software development projects.

    • I have gained experience in programming languages like Java, Python, and C++.

    • I have also collaborated with cross-functional teams to deliver high-quality software solutions.

    • I have received positive feedback from my supervisors and colleagues for my contribution...

  • Answered by AI
  • Q4. I am working with current company since 2 years and 4 months till 2010
  • Q5. We will offer you 26 LPA are you ok with that?
  • Ans. 

    Yes, I am okay with the offer of 26 LPA.

    • Yes, I am satisfied with the offered salary.

    • I believe the salary is competitive for a software engineer role.

    • I am excited about the opportunity and the compensation package.

    • I am confident that my skills and experience justify the offered salary.

  • Answered by AI
  • Q6. Well if it will 28 LPA than its good is it possible to offer this amount
  • Q7. Well i can give you 26.5 LPA not more than that are you ok with that ?
  • Q8. Ok i am fine with that salary package and join in 2 month notice period from my current company.
  • Q9. That's grate good luck, thank You i am generating your offer latter
  • Q10. Thank ok and i will join on schedule date which mention in offer latter

Interview Preparation Tips

Interview preparation tips for other job seekers - well job seekers are more focus on salary i place of work. salary of employee HR decide they can negotiate

Kyndryl Interview FAQs

How many rounds are there in Kyndryl Software Engineer interview?
Kyndryl interview process usually has 1 rounds. The most common rounds in the Kyndryl interview process are Technical.
How to prepare for Kyndryl Software Engineer 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 AWS, Python, Devops, XML and .Net.
What are the top questions asked in Kyndryl Software Engineer interview?

Some of the top questions asked at the Kyndryl Software Engineer interview -

  1. what is abstraction and how can we achieve ...read more
  2. write a query to get 3rd highest salary from the employee ta...read more
  3. write a code to get 2nd last node and its value from the singly linked li...read more

Tell us how to improve this page.

Kyndryl Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Join Kyndryl Kyndryl is the world's largest provider of IT infrastructure services.
Kyndryl Software Engineer Salary
based on 139 salaries
₹2.5 L/yr - ₹12 L/yr
14% less than the average Software Engineer Salary in India
View more details

Kyndryl Software Engineer Reviews and Ratings

based on 13 reviews

3.7/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

2.7

Salary

4.0

Job security

3.9

Company culture

2.6

Promotions

3.7

Work satisfaction

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

₹2.9 L/yr - ₹12.1 L/yr

Project Manager
637 salaries
unlock blur

₹7.1 L/yr - ₹28 L/yr

Associate Technical Engineer
605 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Infrastructure Specialist
552 salaries
unlock blur

₹4.1 L/yr - ₹24 L/yr

SME
416 salaries
unlock blur

₹7.4 L/yr - ₹25 L/yr

Explore more salaries
Compare Kyndryl with

IBM

4.0
Compare

Accenture

3.8
Compare

TCS

3.7
Compare

Wipro

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