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 and Answers for Freshers

Updated 5 Jul 2024

8 Interview questions

A Software Engineer was asked
Q. 

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 (size...
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

🔥 Asked by recruiter 2 times
A Software Engineer was asked
Q. 

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, 8...
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.

Software Engineer Interview Questions Asked at Other Companies for Fresher

asked in Capgemini
Q1. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... 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
A Software Engineer was asked
Q. 

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 c...
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.

🔥 Asked by recruiter 2 times
A Software Engineer was asked
Q. 

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 e...

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

A Software Engineer was asked
Q. 

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 (c...

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.

🔥 Asked by recruiter 2 times
A Software Engineer was asked
Q. 

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.

🔥 Asked by recruiter 2 times
A Software Engineer was asked
Q. 

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 =...

Are these interview questions helpful?
🔥 Asked by recruiter 2 times
A Software Engineer was asked
Q. 

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 is...

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.

Kellton Software Engineer Interview Experiences for Freshers

7 interviews found

I appeared for an interview 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 appeared for an interview 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

I appeared for an interview 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 appeared for an interview 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

I appeared for an interview 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

I appeared for an interview 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

I appeared for an interview 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

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Kellton?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Had appeared for Java developer role, basic Java questions were asked.

I appeared for an interview in Sep 2017.

Interview Questionnaire 

3 Questions

  • Q1. What is deadlock
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular wait, where each process is waiting for a resource held by another process.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and circular wait.

    • Example: Process A holds resource X a...

  • Answered by AI
  • Q2. Which technology you know and worked
  • Ans. 

    I have experience with various technologies including Java, Python, HTML/CSS, JavaScript, and SQL.

    • Java

    • Python

    • HTML/CSS

    • JavaScript

    • SQL

  • Answered by AI
  • Q3. Why you are looking for change and what is your notice period
  • Ans. 

    I am looking for a change to explore new opportunities and challenges. My notice period is 30 days.

    • Seeking new opportunities and challenges

    • Want to learn and grow in a different environment

    • Exploring better career prospects

    • Seeking a company with a better work-life balance

    • Notice period is 30 days

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 25 objective ques from Java and 25 from English
Tips: should prepare with Java Technology
Duration: 1 hour
Total Questions: 50

Round: Technical Interview
Experience: describe clearly
Tips: should prepared

Round: Technical Interview
Experience: do you know about jsf
Tips: yes, I worked

Round: Technical + HR Interview
Experience: this is my dream company actually, and notice is 15 to 20 days.
Tips: be confident

Skills evaluated in this interview

I appeared for an interview in Sep 2017.

Interview Questionnaire 

4 Questions

  • Q1. Technical interview take by client technical person actually they are hiring for another client so they took total 3 technical round and final will HR round
  • Q2. Asking about life cycle of Dot net mvc contols entity frame work and SQL queries
  • Q3. Problem based on oops and SQL queries outputs
  • Q4. Basic questions about my self ,salary discussion basic formalities form I have to fill up

Interview Preparation Tips

Round: Test
Experience: There were around 15 objective question that includes mvc, c#.net and SQL server. It was very simple question like different types of filters,Acton results in mvc. Basic oops concept and dot net web page regarding

Round: Resume Shortlist
Experience: After completing test round another was technical round discussed maily for mvc and SQL server questions. Around 30 mint discussion. After qualify this round another round will start from client technical staff.

General Tips: It was for 2-3 year experience person very simple to crack but focus on you which profile you are looking for study interview questions from net
Skills: Dot net mve oops concept jQuery and SQL server

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 Java, Javascript, Aiml, Angularjs and C++.
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 394 salaries
₹2.6 L/yr - ₹9.5 L/yr
34% less than the average Software Engineer Salary in India
View more details

Kellton Software Engineer Reviews and Ratings

based on 52 reviews

2.3/5

Rating in categories

2.7

Skill development

2.4

Work-life balance

2.2

Salary

2.1

Job security

2.3

Company culture

1.9

Promotions

2.2

Work satisfaction

Explore 52 Reviews and Ratings
Senior Software Engineer
403 salaries
unlock blur

₹10.2 L/yr - ₹18.7 L/yr

Software Engineer
394 salaries
unlock blur

₹2.6 L/yr - ₹9.5 L/yr

Lead Engineer
194 salaries
unlock blur

₹12 L/yr - ₹21.9 L/yr

Software Developer
130 salaries
unlock blur

₹2.8 L/yr - ₹8.6 L/yr

Module Lead
94 salaries
unlock blur

₹12.3 L/yr - ₹21.1 L/yr

Explore more salaries
Compare Kellton with

ITC Infotech

3.7
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

3.5
Compare
write
Share an Interview