i
Kellton
Filter interviews by
I applied via Approached by Company and was interviewed before Jun 2021. There were 3 interview rounds.
I was interviewed in Mar 2021.
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.
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...
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
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.
Given an array containing N
distinct positive integers and a number K
, determine the Kth largest element in the array.
N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
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.
Tip 1 : Practice programs by yourself.
Tip 2 : Projects are important source of learning.
Tip 1 : Build your resume yourself according to needs.
Tip 2 : Do not put wrong information.
I was interviewed in Mar 2021.
Round duration - 30 minutes
Round difficulty - Easy
It was in the evening. Questions were of moderate level.
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 (...
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.
Round duration - 30 minutes
Round difficulty - Easy
It was in the evening. Platform used for this round was hackerrank.
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 ...
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
Tip 1 : do multiple questions
Tip 2 : apply the questions practically
Tip 3 : make projects
Tip 1 : internship or other achievement certificate
Tip 2 : project and skills
Kellton interview questions for popular designations
I was interviewed in Feb 2021.
Round duration - 30 minutes
Round difficulty - Easy
It was in the evening. Platform used for this round was hackerrank. Questions were of moderate level.
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.
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,
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.
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...
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.
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
Tip 1 : Technology you know, projects
Tip 2 : No false information in your resume
Get interview-ready with Top Kellton Interview Questions
I applied via Referral and was interviewed in Aug 2021. There were 3 interview rounds.
I was interviewed in Mar 2021.
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.
You are given a string STR
which contains alphabets, numbers, and special characters. Your task is to reverse the string.
STR = "abcde"
"e...
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...
Tip 1 : practice daily
Tip 2 : concentrate
Tip 1 : do not put false things on resume
Tip 2 : have some projects
I was interviewed in Jan 2021.
Round duration - 30 minutes
Round difficulty - Easy
It was in the evening. Platform used for this round was hackerrank. Questions were of moderate level.
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.
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.
Round duration - 30 minutes
Round difficulty - Medium
It was in the night around 9:00PM. Platform used for this round was skype.
Tip 1 : Learn new topics regular and revised that topic .
Tip 2 : Apply practically.
Tip 3 : Do a project
Tip 1 : Technology you know, projects
Tip 2 : No false information in your resume
I was interviewed in Jan 2021.
Round duration - 30 minutes
Round difficulty - Easy
It was in the evening. Platform used for this round was hackerrank. Questions were of moderate level.
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...
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
Round duration - 30 minutes
Round difficulty - Easy
It was in the night around 9:00PM. Platform used for this round was skype.
Tip 1 : Learn new topics regular and revised that topic .
Tip 2 : Apply practically.
Tip 3 : project work with written processes
Tip 1 : Technology you know, projects
Tip 2 : No false information in your resume
I was interviewed in Mar 2021.
Round duration - 30 minutes
Round difficulty - Medium
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
.
The first line ...
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.
Round duration - 90 minutes
Round difficulty - Medium
Find the minimum number of swaps required to sort a given array of distinct elements in ascending order.
T (number of test cases)
For each test case:
N (siz...
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
Given an array containing N
distinct positive integers and a number K
, determine the Kth largest element in the array.
N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
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.
Tip 1 : Learn new topics regular and revised that topic .
Tip 2 : Apply practically.
Tip 3 : Do a project
Tip 1 : Technology you know, projects
Tip 2 : No false information in your resume
Top trending discussions
The duration of Kellton interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 37 interviews
Interview experience
based on 378 reviews
Rating in categories
Senior Software Engineer
386
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
380
salaries
| ₹0 L/yr - ₹0 L/yr |
Lead Engineer
160
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Developer
143
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Quality Analyst
89
salaries
| ₹0 L/yr - ₹0 L/yr |
TCS
Infosys
Wipro
HCLTech