i
Kellton
Filter interviews by
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
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
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
Kellton interview questions for designations
I was interviewed in Jan 2021.
Round duration - 30 minutes
Round difficulty - Easy
Platform used for this round was hackerrank.
Questions were of moderate level.
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 and assigning elements to subsets greedily
Round duration - 30 minutes
Round difficulty - Easy
Platform used for this round was skype.
Tip 1 : learn something daily
Tip 2 : Apply practically.
Tip 3 : one question was always ready in the mind
Tip 1 : your best working project on latest technology
Tip 2 : mention your skills brightly
Get interview-ready with Top Kellton Interview Questions
I was interviewed in Jan 2021.
Round duration - 30 minutes
Round difficulty - Easy
It was in the evening.
Questions were of moderate level.
Given two strings S
and T
consisting of lowercase English letters, the task is to count the distinct occurrences of T
in S
as a subsequence.
A subsequ...
Count the distinct occurrences of a given subsequence in a string.
Iterate through the string S and keep track of the count of distinct occurrences of T as a subsequence.
Use dynamic programming to efficiently solve the problem by considering all possible subsequences of T in S.
Handle edge cases such as empty strings or when T is longer than S.
Example: For S = 'banana' and T = 'ban', the output is 3 as T appears as [ban]
Round duration - 30 minutes
Round difficulty - Medium
It was in the night around 9:00PM.
platform used in round is skype
Tip 1 : solve questipons regularly
Tip 2 : practice more and more
Tip 3 : marks the doubts
Tip 1 : latest Technology projects
Tip 2 : no false information 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 an integer array ARR
of size N
, your task is to find the total number of subsequences in which all elements are equal.
A subsequence of an array i...
Count the total number of subsequences in which all elements are equal in an integer array.
Iterate through the array and count the frequency of each element.
Calculate the total number of subsequences for each element using the formula (frequency * (frequency + 1) / 2).
Sum up the total number of subsequences for all elements and return the result modulo 10^9 + 7.
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
Top trending discussions
I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.
I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.
I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.
Some of the top questions asked at the Kellton Software Engineer interview for freshers -
based on 48 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