Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Kellton Team. If you also belong to the team, you can get access from here

Kellton Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Kellton Interview Questions, Process, and Tips

Updated 24 Jan 2025

Top Kellton Interview Questions and Answers

View all 45 questions

Kellton Interview Experiences

Popular Designations

50 interviews found

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

Round 1 - HR 

(1 Question)

  • Q1. Generic questions like current work, previous experience, expected salary
Round 2 - Technical 

(1 Question)

  • Q1. PM Delivery, Process, Project Managementake Methodology, Case Study, Stake holder management, PM tools, Estimation technique
Round 3 - One-on-one 

(1 Question)

  • Q1. General intro, Past experience discussion, Case study related questions, expectation from Kellton, Risk management

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a mistake to join this company, No process, Seems it is being run by a handful of people. Bad politics and extremely non-responsive HR.

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)
Round 1 - Technical 

(1 Question)

  • Q1. Technical questions into node js based on your profile

Interview Preparation Tips

Interview preparation tips for other job seekers - I accept job & started to work hard day over night. When I drop resign they release me asap but till date they don't have to pay my FNF it's almost 6month. I hope you understand other things. Please avoid to join kelltontech!

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)
Kellton Interview Questions and Answers for Freshers
illustration image

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

We get 30 question for 30 minutes. All question had multiple choice. One question was to count the ways to reach the nth stairs mathematically. It was in the form of mcq.

  • Q1. 

    Count Ways to Climb Stairs Problem

    Given a staircase with a certain number of steps, you start at the 0th step, and your goal is to reach the Nth step. At every step, you have the option to move either on...

  • Ans. 

    The problem involves counting the number of distinct ways to climb a staircase with a certain number of steps by moving either one or two steps at a time.

    • Use dynamic programming to solve this problem efficiently.

    • Define a recursive function to calculate the number of ways to reach each step.

    • Consider base cases for 0 and 1 steps.

    • Use memoization to store and reuse intermediate results.

    • Return the final result modulo 10^9+7

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 5 minutes
Round difficulty - Medium

It was evening when my chance came. I went to HR cabin in proper discipline manner. I great him and then he ask to sit. Then I gave him my resume. He start asking basic details which are not mentioned in resume. Then He gave me one question from array (To print 3rd highest value from array without using sorting method). Then asked questions from database and Oops. After I gave answers he asked me do you like coding or want to do this for money. So I tell him I like coding so its my passion. Then He asked me to leave.

  • Q1. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Use a priority queue or quick select algorithm for efficient solution.

    • Handle constraints like array size and element values.

    • Ensure all elements in the array are distinct.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo CriteriaKellton Tech Solutions Limited interview preparation:Topics to prepare for the interview - Data Structure, OOPS, DBMS, Aptitude, Algorithm.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice programs by yourself.
Tip 2 : Projects are important source of learning.
 

Application resume tips for other job seekers

Tip 1 : Build your resume yourself according to needs.
Tip 2 : Do not put wrong information.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening. Questions were of moderate level.

  • Q1. 

    Divide Chocolates Problem Statement

    Ninja bought chocolate consisting of several chunks, and the sweetness of each chunk is represented in an array ARR. He wants to divide the chocolate into K + 1 parts (...

  • Ans. 

    The task is to maximize the total sweetness of the part that Ninja will get by dividing chocolates into K + 1 parts.

    • Iterate through all possible cuts to find the maximum sweetness Ninja can obtain.

    • Keep track of the minimum sweetness in each part after the cut.

    • Return the maximum of these minimum sweetness values as the result.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening. Platform used for this round was hackerrank.

  • Q1. 

    Partition to K Equal Sum Subsets Problem

    Given an array of integers and a positive integer 'K', determine if it is possible to divide the array into 'K' non-empty subsets such that the sum of elements in ...

  • Ans. 

    The problem involves dividing an array into K subsets with equal sum.

    • Use backtracking to try all possible combinations of dividing the array into K subsets

    • Keep track of the sum of elements in each subset and check if they are equal to the target sum

    • Optimize by sorting the array in descending order before starting the backtracking process

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNo percentage criteria(good in aptitude/logic and good in data structure)Kellton Tech Solutions Limited interview preparation:Topics to prepare for the interview - OOPS, data structure, searching,recurtionsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : do multiple questions 
Tip 2 : apply the questions practically 
Tip 3 : make projects

Application resume tips for other job seekers

Tip 1 : internship or other achievement certificate 
Tip 2 : project and skills

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Kellton Software Engineer Interview Questions and Answers

Q1. Find All Pairs Adding Up to Target Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target. Input: The first line contains an integer 'T' denoting th... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Kellton interview questions for popular designations

 Software Engineer

 (11)

 Senior Software Engineer

 (6)

 Software Developer

 (3)

 Quality Analyst

 (2)

 Project Manager

 (2)

 Technical Lead

 (2)

 DOT NET Developer

 (2)

 Business Analyst

 (2)

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening. Platform used for this round was hackerrank. Questions were of moderate level.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in an array of integers.

    • Iterate through the array and keep track of the maximum sum subarray seen so far.

    • At each index, decide whether to include the current element in the subarray or start a new subarray.

    • Update the maximum sum subarray if a new maximum is found.

    • Consider edge cases like all negative numbers in the array.

    • Example: For input arr = [-2,

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening. I have practiced coding questions a lot so my thinking abilities got improved. Questions were of moderate level.

  • Q1. 

    Max Length of Same Indexed Subarrays Problem

    Given two integer arrays A and B, and an integer C, the goal is to determine the maximum possible length K of the same indexed subarrays. The condition is that...

  • Ans. 

    Find the maximum length of same indexed subarrays based on given conditions.

    • Iterate through the arrays to find the maximum length of same indexed subarrays.

    • Calculate the sum of subarrays from A and B, and check if the condition is met.

    • Return the maximum length that satisfies the condition.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from College of Technology Pantnagar. I applied for the job as Software Engineer in DelhiEligibility criteriaNo percentage criteria(good in aptitude/logic and good in data structure)Kellton Tech Solutions Limited interview preparation:Topics to prepare for the interview - oops,Dbms,Algorithms,Array,Data structure.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Learn new topics and revised that topic .
Tip 2 : one question is always in the mind to think
Tip 3 : Do a project

Application resume tips for other job seekers

Tip 1 : Technology you know, projects
Tip 2 : No false information in your resume

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Kellton Software Engineer Interview Questions and Answers

Q1. Find All Pairs Adding Up to Target Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target. Input: The first line contains an integer 'T' denoting th... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Get interview-ready with Top Kellton Interview Questions

I applied via Referral and was interviewed in Aug 2021. There were 3 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. All basic questions related to programming, understanding about data structures, dbms so on
Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself.. be calm have faith in yourself

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

Jobs at Kellton

View all

I was interviewed in Mar 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

We had all rounds in afternoon. Environment of the office was giving positive vides. Interviewer was polite and kind.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Iterate through the string from the end to the beginning and append each character to a new string.

    • Use built-in functions like reverse() or StringBuilder in languages like Python or Java for efficient reversal.

    • Handle special characters and numbers along with alphabets while reversing the string.

    • Ensure to consider the constraints provided in th...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in GurgaonEligibility criteriaNoKellton Tech Solutions Limited interview preparation:Topics to prepare for the interview - OOps,Data structures, Algorithm,C basic, SEOTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : practice daily 
Tip 2 : concentrate

Application resume tips for other job seekers

Tip 1 : do not put false things on resume
Tip 2 : have some projects

Final outcome of the interviewSelected

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening. Platform used for this round was hackerrank. Questions were of moderate level.

  • Q1. 

    Distinct Subsequences Problem Statement

    You are given a string 'S' of length 'N' which may include duplicate alphabets. Your goal is to calculate the number of distinct subsequences in the string.

    Exampl...

  • Ans. 

    Calculate the number of distinct subsequences in a string with possible duplicates.

    • Iterate through the string and keep track of the count of each character.

    • Use dynamic programming to calculate the number of distinct subsequences.

    • Consider the cases where a character is included or excluded in the subsequence.

    • Modulo the final count by 10^9 + 7 to handle large answers.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 30 minutes
Round difficulty - Medium

It was in the night around 9:00PM. Platform used for this round was skype.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bhagwan Parshuram Institute of Technology. I applied for the job as Software Engineer in DelhiEligibility criteriaNo percentage criteria(good in aptitude/logic and good in data structure)Kellton Tech Solutions Limited interview preparation:Topics to prepare for the interview - OOPS, DBMS, Algorithms, Array, Data structure.Time required to prepare for the interview - 3 MONTHSInterview preparation tips for other job seekers

Tip 1 : Learn new topics regular and revised that topic .
Tip 2 : Apply practically.
Tip 3 : Do a project

Application resume tips for other job seekers

Tip 1 : Technology you know, projects
Tip 2 : No false information in your resume

Final outcome of the interviewRejected

Top Kellton Software Engineer Interview Questions and Answers

Q1. Find All Pairs Adding Up to Target Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target. Input: The first line contains an integer 'T' denoting th... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening. Platform used for this round was hackerrank. Questions were of moderate level.

  • Q1. 

    Max Length of Same Indexed Subarrays Problem

    Given two integer arrays A and B, and an integer C, the goal is to determine the maximum possible length K of the same indexed subarrays. The condition is that...

  • Ans. 

    The goal is to determine the maximum possible length of same indexed subarrays based on given conditions.

    • Iterate through the arrays A and B to find the maximum possible length of same indexed subarrays.

    • Calculate the sum of the maximum element in the K-length subarray from B and the product of K and the sum of the K-length subarray from A.

    • Check if the sum does not exceed the given value C to determine the maximum length

  • Answered by AI
Round 2 - Coding Test 

Round duration - 30 minutes
Round difficulty - Easy

It was in the night around 9:00PM. Platform used for this round was skype.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bhagwan Parshuram Institute of Technology. I applied for the job as Software Engineer in DelhiEligibility criteriaNo percentage criteriaKellton Tech Solutions Limited interview preparation:Topics to prepare for the interview - oops, array, algorithms, recursion, loops,Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Learn new topics regular and revised that topic .
Tip 2 : Apply practically.
Tip 3 : project work with written processes

Application resume tips for other job seekers

Tip 1 : Technology you know, projects
Tip 2 : No false information in your resume

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Kellton Software Engineer Interview Questions and Answers

Q1. Find All Pairs Adding Up to Target Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target. Input: The first line contains an integer 'T' denoting th... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. 

    The task is to find all pairs of elements in an array that add up to a given target.

    • Iterate through the array and for each element, check if the target minus the element exists in a hash set.

    • If it exists, add the pair to the result. If not, add the element to the hash set.

    • Handle cases where the same element is used twice to form a pair.

    • If no pair is found, return (-1, -1) for that test case.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Minimum Number of Swaps to Sort an Array

    Find the minimum number of swaps required to sort a given array of distinct elements in ascending order.

    Input:

    T (number of test cases)
    For each test case:
    N (siz...
  • Ans. 

    The minimum number of swaps required to sort a given array of distinct elements in ascending order.

    • Use a graph-based approach to find cycles in the array

    • Count the number of swaps needed to fix each cycle

    • Sum up the swaps needed for all cycles to get the total minimum swaps

  • Answered by AI
  • Q2. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Ensure all elements in the array are distinct.

    • Handle multiple test cases efficiently.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Acharya Institutes. I applied for the job as Software Engineer in GurgaonEligibility criteriaNo percentage criteria(good in aptitude/logic and good in data structure)Kellton Tech Solutions Limited interview preparation:Topics to prepare for the interview - oops,Dbms,Algorithms,Array,Data structure.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Learn new topics regular and revised that topic .
Tip 2 : Apply practically.
Tip 3 : Do a project

Application resume tips for other job seekers

Tip 1 : Technology you know, projects
Tip 2 : No false information in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Kellton Software Engineer Interview Questions and Answers

Q1. Find All Pairs Adding Up to Target Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target. Input: The first line contains an integer 'T' denoting th... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Contribute & help others!
anonymous
You can choose to be anonymous

Kellton Interview FAQs

How many rounds are there in Kellton interview?
Kellton interview process usually has 1-2 rounds. The most common rounds in the Kellton interview process are Technical, HR and One-on-one Round.
How to prepare for Kellton 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 Kellton. The most common topics and skills that interviewers at Kellton expect are Javascript, SQL, HTML, Python and JQuery.
What are the top questions asked in Kellton interview?

Some of the top questions asked at the Kellton interview -

  1. What is Sql joins, cte, Sp vs function, user defined typ...read more
  2. How to manage memory management in Pyth...read more
  3. what is setState in stateful widg...read more
How long is the Kellton interview process?

The duration of Kellton interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

DESIGNATION

JOBS

Kellton

No Jobs

INTERVIEWS

Kellton

No Interviews

INTERVIEWS

Practo

No Interviews

INTERVIEWS

Concentrix Catalyst

No Interviews

SALARIES

Aptroid Technologies

SALARIES

Concentrix Catalyst

INTERVIEWS

Practo

No Interviews

INTERVIEWS

GMR Group

No Interviews

Tell us how to improve this page.

Kellton Interview Process

based on 37 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
ITC Infotech Interview Questions
3.6
 • 334 Interviews
View all

Kellton Reviews and Ratings

based on 378 reviews

2.8/5

Rating in categories

2.7

Skill development

2.7

Work-life balance

2.7

Salary

2.6

Job security

2.7

Company culture

2.4

Promotions

2.7

Work satisfaction

Explore 378 Reviews and Ratings
Full Stack Java Developer

Gurgaon / Gurugram

2-6 Yrs

Not Disclosed

US IT & Non IT Recruiter - Hyderabad Location

Hyderabad / Secunderabad

0-1 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
386 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
380 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
160 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
143 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Quality Analyst
89 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Kellton with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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