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 Software Engineer Interview Questions, Process, and Tips for Freshers

Updated 5 Jul 2024

Top Kellton Software Engineer Interview Questions and Answers for Freshers

  • 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 ...read more
  • 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 ...read more
  • Q3. 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 su ...read more
View all 8 questions

Kellton Software Engineer Interview Experiences for Freshers

7 interviews found

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

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

Software Engineer Interview Questions Asked at Other Companies for undefined

asked in Capgemini
Q1. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in Capgemini
Q2. How can you cut a rectangular cake in 8 symmetric pieces in three ... read more
Q3. Split Binary String Problem Statement Chintu has a long binary st ... read more
asked in TCS
Q4. What is the reason that the Iterative Waterfall model was introdu ... read more
asked in Wipro
Q5. Knapsack Problem Statement There is a potter with a limited amoun ... read more

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

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

Kellton interview questions for designations

 Senior Software Engineer

 (6)

 Software Developer

 (3)

 Software Developer Intern

 (2)

 Software Developer Trainee

 (1)

 Senior Software Analyst

 (1)

 Lead Engineer

 (1)

 Softwaretest Engineer

 (1)

 Senior Engineer

 (1)

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

Platform used for this round was hackerrank. 
Questions were of moderate level.

  • 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 and assigning elements to subsets greedily

  • Answered by AI
Round 2 - Face to Face 

Round duration - 30 minutes
Round difficulty - Easy

Platform used for this round was skype.

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,Data structure,searchingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : learn something daily
Tip 2 : Apply practically.
Tip 3 : one question was always ready in the mind

Application resume tips for other job seekers

Tip 1 : your best working project on latest technology
Tip 2 : mention your skills brightly

Final outcome of the interviewRejected

Skills evaluated in this interview

Get interview-ready with Top Kellton Interview Questions

I was interviewed in Jan 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. 

    Distinct Subsequences Problem Statement

    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.

    Explanation

    A subsequ...

  • Ans. 

    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]

  • 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 in round is skype

Interview Preparation Tips

Professional and academic backgroundI 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 - DBMS, Algorithms, Array, Data structure, pointerTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : solve questipons regularly
Tip 2 : practice more and more 
Tip 3 : marks the doubts

Application resume tips for other job seekers

Tip 1 : latest Technology projects
Tip 2 : no false information information in your resume

Final outcome of the interviewRejected

Skills evaluated in this interview

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. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    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.

  • 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 Dronacharya College of Engineering. 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

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

Kellton Interview FAQs

How many rounds are there in Kellton Software Engineer interview for freshers?
Kellton interview process for freshers usually has 2-3 rounds. The most common rounds in the Kellton interview process for freshers are HR, Aptitude Test and One-on-one Round.
How to prepare for Kellton Software Engineer interview for freshers?
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 C++, ESIC, Java and Javascript.
What are the top questions asked in Kellton Software Engineer interview for freshers?

Some of the top questions asked at the Kellton Software Engineer interview for freshers -

  1. They asked me the one puzzle question based on data struct...read more
  2. Asked about OOPs concepts, merge sort with code, quick sort with code. Discussi...read more
  3. Questions related to javascript, angul...read more

Tell us how to improve this page.

Kellton Software Engineer Salary
based on 380 salaries
₹2.4 L/yr - ₹11.5 L/yr
18% less than the average Software Engineer Salary in India
View more details

Kellton Software Engineer Reviews and Ratings

based on 48 reviews

2.3/5

Rating in categories

2.7

Skill development

2.3

Work-life balance

2.1

Salary

2.2

Job security

2.3

Company culture

2.0

Promotions

2.3

Work satisfaction

Explore 48 Reviews and Ratings
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