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
2.9

based on 357 Reviews

Filter interviews by

Kellton Software Engineer Interview Questions, Process, and Tips

Updated 5 Jul 2024

Top Kellton Software Engineer Interview Questions and Answers

  • Q1. Maximum Subarray Sum You are given an array (ARR) of length N, consisting of integers. You have to find the sum of the subarray (including empty subarray) having maximum ...read more
  • Q2. Kth largest element in the unsorted array You are given an array consisting of 'N' distinct positive integers and a number 'K'. Your task is to find the kth largest eleme ...read more
  • Q3. Two Sum You are 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 Target. Note: ...read more
View all 12 questions

Kellton Software Engineer Interview Experiences

11 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

I was asked about the star pattern questions and also moderate array and string questions

Round 2 - HR 

(2 Questions)

  • Q1. Where do you see yourself in next 4 years
  • Q2. What is your future goal
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

MCQ round containing mathematical questions like upstream downstream, etc

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about OOPs concepts, merge sort with code, quick sort with code. Discussion on problem solving questions based on OOPs
Round 3 - HR 

(1 Question)

  • Q1. Company polices elaborated and discussed.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

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

    Ninja bought chocolate consisting of some chunks. The sweetness of each chunk is given in an array ‘ARR’. Ninja has ‘K’ friends, and he wishes to divide the chocolate into 'K' + 1...

  • Ans. Dynamic Programming

    The idea is to figure out the recursive calls and optimize them using dynamic programming.

    It breaks down into a problem of dividing the array into ‘K’ + 1 partitions such that the partition which has the lowest sum of sweetness is maximum as compared to all the possible partitions. It’s better to make a prefix array as we would need the prefix sum of the array in every iteration. 

    Now, we will st...

  • Answered by CodingNinjas
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

    You are given an array of 'N' integers, and a positive integer 'K'. You need to determine if it is possible to divide the array into 'K' non-empty s...

  • Ans. Exhaustive Search, DFS, BackTracking.
    • The underlying problem is to divide the input array into K subsets so that all the subsets have equal sums.
    • So, if the sum of all the elements of the input array is not divisible by K, that is remainder != 0, then the given array can not be divided into K equal sum subsets. So, return false. Also if the largest element of the array is greater than (sum of elements of the array) / K, ...
  • Answered by CodingNinjas

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

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

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

    You are given an array (ARR) of length N, consisting of integers. You have to find the sum of the subarray (including empty subarray) having maximum sum among all subarrays.

    A subarr...

  • Ans. Brute Force Approach

    Let us check for all possible subarrays of the array. For this, we run two loops, where the outer loop points to the left boundary and the inner loop points to the outer boundary of the subarray. 

    Using another loop inside, find the sum of this subarray. Compare it with the maximum subarray sum obtained so far. After checking all the subarrays, simply return the maximum sum found.

    Space Complexit...
  • Answered by CodingNinjas
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. Maximum length of same indexed subarrays

    Given two arrays ‘A’ and ‘B’ and an integer ‘C’, the task is to find the maximum possible length, say K, of the same indexed subarrays such that the sum of the maxi...

  • Ans. Brute force

    The idea is to brute force to find the maximum length subarray which satisfies the given condition.


     

    • The steps are as follows:
    • Maintain a variable ‘ans’, which stores the final answer.
    • Loop from 1 to ‘N’ Using 'i:
    • 'i' denotes the length of the subarray, which may satisfy the condition.
    • Maintain an array ‘prefixSum’ which stores the prefix sum of the array ‘a’.
    • To check whether the subarray of length 'i' satis...

  • Answered by CodingNinjas

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

Kellton interview questions for designations

 Senior Software Engineer

 (6)

 Software Developer

 (3)

 Software Developer Intern

 (2)

 Senior Software Analyst

 (1)

 Software Developer Trainee

 (1)

 Softwaretest Engineer

 (1)

 Senior Engineer

 (1)

 Technical Lead

 (2)

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

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

    You have been given string 'S' of length 'N' that may contain duplicate alphabets. Your task is to return the count of distinct subsequences of it.

    For example:

    For...
  • Ans. Brute force
    • The IDea is to call a helper function so as to create all possible subsequences of the string which will contain:
      • String CUR = the possible subsequence of the string.
      • Int ID = the index of character which will either be included or excluded.
    • We maintain a set to count the distinct subsequences, each time a new subsequence is created, we add it into the set. Remember, the set does not contain duplicate elements.
    • ...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

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

  • Q1. OS Questions

    What are the different operating systems?
    What is monolithic kernel?
    What is the difference between micro kernel and macro kernel?

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

Skills evaluated in this interview

Get interview-ready with Top Kellton Interview Questions

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 15 Sep 2021

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. Maximum length of same indexed subarrays

    Given two arrays ‘A’ and ‘B’ and an integer ‘C’, the task is to find the maximum possible length, say K, of the same indexed subarrays such that the sum of the maxi...

  • Ans. Brute force

    The idea is to brute force to find the maximum length subarray which satisfies the given condition.


     

    • The steps are as follows:
    • Maintain a variable ‘ans’, which stores the final answer.
    • Loop from 1 to ‘N’ Using 'i:
    • 'i' denotes the length of the subarray, which may satisfy the condition.
    • Maintain an array ‘prefixSum’ which stores the prefix sum of the array ‘a’.
    • To check whether the subarray of length 'i' satis...

  • Answered by CodingNinjas
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

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

  • Q1. OS Questions

    What are the different operating systems?
    What is monolithic kernel?
    What is the difference between micro kernel and macro kernel?

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

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

  • Q1. Two Sum

    You are 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 Target.

    Note:

    We cannot use th...
  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. Minimum number of swaps required to sort an array

    You have been given an array 'ARR' of 'N' distinct elements.

    Your task is to find the minimum no. of swaps required to sort the array.

    F...
  • Ans. Naive Approach

    While iterating over the array, check the current element, and if not in the correct place, replace that element with the index of the element which should have come in this place.

     

    Below is the algorithm:

    1. Create a copy of the given input array and store it in temp.
    2. Sort the temp array.
    3. Iterate over the input array, and check whether the current element is at the right place or not by comparing it with t...
  • Answered by CodingNinjas
  • Q2. Kth largest element in the unsorted array

    You are given an array consisting of 'N' distinct positive integers and a number 'K'. Your task is to find the kth largest element in the array.

    E...
  • Ans. Brute Force
    • The most obvious brute force approach would be to sort the array in descending order and return the ‘K’th element from the beginning of the array.
    • Sort the array in descending order, for sorting most of the languages have their inbuilt sort methods which are usually very fast.
    • After sorting, return the element arr['K'-1](i.e. element at index ‘K’-1, considering 0-based indexing).
    Space Complexity: O(1)Explanati...
  • Answered by CodingNinjas

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

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

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

    Given two strings S and T consisting of lower case English letters. The task is to count the distinct occurrences of T in S as a subsequence.

    A subsequence is a sequence generated f...

  • Ans. Recursive Approach

    If we carefully analyze the given problem, we can see that it can be easily divided into sub-problems which can be solved using recursion. The idea is to process all characters of both strings one by one starting from either from left or right side. Let us traverse from the right corner, there are two possibilities for every pair of characters being traversed.

     

    Base Cases:

    1. Given the string T is an ...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was in the night around 9:00PM.
platform used in round is skype

  • Q1. OS Questions

    What are the different operating systems?
    What is monolithic kernel?
    What is the difference between micro kernel and macro kernel?

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

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 14 Sep 2021

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

    You have been given an integer array/list 'ARR' of size 'N'. Your task is to return the total number of those subsequences of the array in which all the elements are equa...

  • Ans. Brute Force

    The idea is to generate all the subsequences and check whether the elements present are equal or not.

     

    Here is the algorithm :

     

    1. Generate all the subsequences of the given array.
    2. Maintain a variable ‘COUNT’ which stores the total number of subsequences in which all the elements are equal.
    3. Iterate over each of the generated subsequences.
      1. In case all the elements of the current subsequence are equal, we in...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

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

  • Q1. OS Questions

    What are the different operating systems?
    What is monolithic kernel?
    What is the difference between micro kernel and macro kernel?

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

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 14 Sep 2021

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

    You are given an array of 'N' integers, and a positive integer 'K'. You need to determine if it is possible to divide the array into 'K' non-empty s...

  • Ans. Exhaustive Search, DFS, BackTracking.
    • The underlying problem is to divide the input array into K subsets so that all the subsets have equal sums.
    • So, if the sum of all the elements of the input array is not divisible by K, that is remainder != 0, then the given array can not be divided into K equal sum subsets. So, return false. Also if the largest element of the array is greater than (sum of elements of the array) / K, ...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

Platform used for this round was skype.

  • Q1. OS Questions

    What is monolithic kernel?
    What is the difference between micro kernel and macro kernel?

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

Kellton Interview FAQs

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

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

  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.

People are getting interviews through

based on 2 Kellton interviews
Campus Placement
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Kellton Software Engineer Salary
based on 370 salaries
₹2.4 L/yr - ₹12.8 L/yr
13% less than the average Software Engineer Salary in India
View more details

Kellton Software Engineer Reviews and Ratings

based on 43 reviews

2.3/5

Rating in categories

2.9

Skill development

2.2

Work-Life balance

2.3

Salary & Benefits

2.2

Job Security

2.3

Company culture

2.1

Promotions/Appraisal

2.2

Work Satisfaction

Explore 43 Reviews and Ratings
Senior Software Engineer
385 salaries
unlock blur

₹5.5 L/yr - ₹21 L/yr

Software Engineer
371 salaries
unlock blur

₹2.4 L/yr - ₹12.8 L/yr

Lead Engineer
156 salaries
unlock blur

₹7 L/yr - ₹24.3 L/yr

Software Developer
144 salaries
unlock blur

₹2.8 L/yr - ₹10.3 L/yr

Software Quality Analyst
89 salaries
unlock blur

₹2.7 L/yr - ₹9 L/yr

Explore more salaries
Compare Kellton with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview