i
Kellton
Filter interviews by
I appeared for an interview 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 appeared for an interview 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
I applied via Recruitment Consulltant and was interviewed before Jan 2022. There were 2 interview rounds.
Tools for data extraction include web scrapers, APIs, and data mining software.
Web scrapers like Scrapy and BeautifulSoup extract data from websites
APIs like Google Maps API and Twitter API provide access to specific data
Data mining software like RapidMiner and KNIME analyze large datasets
OCR software like Tesseract can extract text from images
Database management systems like MySQL and Oracle can extract data from data
I am an expert in various email marketing tools such as Mailchimp, HubSpot, and Constant Contact.
Proficient in creating and managing email campaigns using Mailchimp, HubSpot, and Constant Contact
Adept in designing visually appealing email templates and newsletters
Experienced in analyzing email campaign performance and optimizing for better results
Skilled in segmenting email lists and personalizing email content for tar
I appeared for an interview 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
Kellton interview questions for popular designations
I appeared for an interview 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
Get interview-ready with Top Kellton Interview Questions
I appeared for an interview 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 appeared for an interview in Sep 2020.
Round duration - 30 minutes
Round difficulty - Medium
It was in the evening. Platform used for this round was hackerrank. Questions were of moderate level. Top topics where questions are more prone is Data Structures.
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.
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
Use Kadane's algorithm to efficiently find the maximum subarray sum
Consider the case where all elements are negative to handle edge cases
Round duration - 25 minutes
Round difficulty - Medium
It was in the night around 9:00PM. Platform used for this round was skype. Questions were of easy to moderate level and there is very interesting environment created by interviewer to answer.
Round duration - 15 minutes
Round difficulty - Easy
It was in the night around 7:00PM. Platform used for this round was zoom. Questions were more on personality based rather than theoretical knowledge. Interviewer was very calm in questioning.
Tip 1 : Learn new topics regular and revised that topic .
Tip 2 : Research on company thoroughly
Tip 3 : Do at least 2 project
Tip 1 : Should be look good to the shotlister.
Tip 2 : No false information in your resume
I appeared for an interview in Sep 2020.
Round duration - 60 minutes
Round difficulty - Easy
Ninja enjoys arranging numbers and wishes to organize them into N
rows. The first row should have 1 number, the second row 2 numbers, the third row 3 numbers, and so forth, conti...
Generate number pattern in N rows with ascending order and restarting at 9.
Iterate through each row from 1 to N.
In each row, print numbers in ascending order starting from 1 and restarting at 9.
Handle the wrapping around from 9 to 1 when reaching 9 in the sequence.
You are given a 2D matrix 'ARR' of size 'N x 3' with integers, where 'N' is the number of rows. Your task is to compute the smallest sum achievable by selecting one...
Find the smallest sum achievable by selecting one element from each row of a 2D matrix, following certain constraints.
Iterate through each row and calculate the minimum sum by selecting elements that do not violate the constraints.
Keep track of the minimum sum achieved so far.
Avoid selecting elements directly below previously selected elements.
Example: For input ARR = [[1, 2, 3], [4, 8, 6], [1, 5, 3]], the optimal sele
Tip 1 : Be confident
Tip 2 : Be yourself
Tip 3 : Be true to yourself
Tip 1 : Projects on resume
Tip 2 : Strong knowledge of any programming language.
I applied via Naukri.com and was interviewed in May 2021. There were 4 interview rounds.
I applied via Naukri.com and was interviewed before May 2021. There were 4 interview rounds.
3 coding program.
Top trending discussions
The duration of Kellton interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 39 interviews
Interview experience
based on 396 reviews
Rating in categories
Senior Software Engineer
389
salaries
| ₹5.5 L/yr - ₹21.5 L/yr |
Software Engineer
388
salaries
| ₹3 L/yr - ₹12.7 L/yr |
Lead Engineer
178
salaries
| ₹7 L/yr - ₹25 L/yr |
Software Developer
143
salaries
| ₹2.8 L/yr - ₹11 L/yr |
Software Quality Analyst
89
salaries
| ₹2.7 L/yr - ₹9 L/yr |
ITC Infotech
3i Infotech
Sify Technologies
Microland