Add office photos
Employer?
Claim Account for FREE

IVP (India)

4.0
based on 57 Reviews
Filter interviews by

Kyndryl Interview Questions and Answers

Updated 5 Feb 2024

Q1. What is arrow function in JS

Ans.

Arrow functions are a concise way to write functions in JavaScript.

  • Arrow functions have a shorter syntax compared to regular functions.

  • They do not have their own 'this' keyword, and instead inherit 'this' from the parent scope.

  • Arrow functions are best suited for non-method functions, and cannot be used as constructors.

  • Example: const add = (a, b) => a + b;

View 1 answer

Q2. program to reverse a linked list

Ans.

Reverse a linked list by changing the next pointers of each node to point to the previous node.

  • Start with three pointers: current, prev, and next.

  • Iterate through the linked list, updating the next pointers to point to the previous node.

  • Update prev, current, and next pointers in each iteration until the end of the list is reached.

Add your answer

Q3. What is runtime polymerphism

Ans.

Runtime polymorphism is the ability of a subclass to override a method from its superclass during runtime.

  • Runtime polymorphism is achieved through method overriding in object-oriented programming.

  • It allows a subclass to provide a specific implementation of a method that is already defined in its superclass.

  • The actual method called is determined by the type of object at runtime.

  • Example: Animal class has a method 'makeSound', Dog subclass overrides it with 'bark', Cat subclass ...read more

Add your answer

Q4. What is abstraction in oops

Ans.

Abstraction in OOP 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

  • It helps in reducing complexity and improving maintainability of code

  • Example: A car is an abstraction of various components like engine, wheels, etc. Users interact with the car without needing to know the internal workings

Add your answer
Discover Kyndryl interview dos and don'ts from real experiences

Q5. What is CTE in sql

Ans.

CTE stands for Common Table Expression in SQL, used to create temporary result sets that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

  • CTEs improve readability and maintainability of complex queries

  • CTEs can be recursive, allowing for hierarchical data querying

  • CTEs are defined using the WITH keyword followed by the CTE name and query

Add your answer

Q6. Uses of B Tree

Ans.

B Trees are used for indexing in databases and file systems.

  • Used for efficient searching, insertion, and deletion operations in databases.

  • Helps in maintaining sorted data for quick retrieval.

  • Commonly used in file systems to store large amounts of data efficiently.

  • Each node in a B Tree can have multiple children, reducing the height of the tree.

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Kyndryl

based on 3 interviews
Interview experience
4.3
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Software Developer Interview Questions from Similar Companies

4.1
 • 321 Interview Questions
4.2
 • 50 Interview Questions
3.9
 • 27 Interview Questions
3.4
 • 17 Interview Questions
4.2
 • 16 Interview Questions
3.4
 • 11 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter