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 Interview Questions, Process, and Tips

Updated 24 Jan 2025

Top Kellton Interview Questions and Answers

View all 45 questions

Kellton Interview Experiences

Popular Designations

50 interviews found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me tools used for data extraction
  • Ans. 

    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

  • Answered by AI
  • Q2. Let me know email marketing tools you are expert in
  • Ans. 

    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

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with email marketing tools and techniques to crack interview

Lead Generation Manager Interview Questions asked at other Companies

Q1. Let me know email marketing tools you are expert in
View answer (1)

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

Top Kellton Software Engineer Interview Questions and Answers

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 contains an integer 'T' denoting th... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Kellton Interview Questions and Answers for Freshers
illustration image

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

Top Kellton Software Engineer Interview Questions and Answers

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 contains an integer 'T' denoting th... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

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

Top Kellton Software Engineer Interview Questions and Answers

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 contains an integer 'T' denoting th... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Kellton interview questions for popular designations

 Software Engineer

 (11)

 Senior Software Engineer

 (6)

 Software Developer

 (3)

 Quality Analyst

 (2)

 Project Manager

 (2)

 Technical Lead

 (2)

 DOT NET Developer

 (2)

 Business Analyst

 (2)

I was interviewed in Sep 2020.

Round 1 - Coding Test 

(2 Questions)

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.

  • 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
  • Q2. 

    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

    • Use Kadane's algorithm to efficiently find the maximum subarray sum

    • Consider the case where all elements are negative to handle edge cases

  • Answered by AI
Round 2 - Face to Face 

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 3 - HR 

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.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in DelhiEligibility criteriaAbove 7 CGPAKellton Tech Solutions Limited interview preparation:Topics to prepare for the interview - oops, Dbms, Algorithms, Array, Data structure, Data ScienceTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Learn new topics regular and revised that topic .
Tip 2 : Research on company thoroughly
Tip 3 : Do at least 2 project

Application resume tips for other job seekers

Tip 1 : Should be look good to the shotlister.
Tip 2 : No false information in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Get interview-ready with Top Kellton Interview Questions

I was interviewed in Sep 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Number Pattern Generation

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

  • Ans. 

    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.

  • Answered by AI
  • Q2. 

    Minimum Sum in Matrix Problem Statement

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

  • Ans. 

    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

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BangaloreEligibility criteriaNoKellton Tech Solutions Limited interview preparation:Topics to prepare for the interview - C++ , React , MySQL , html/css, Data Structures, Pointers, OOPSTime required to prepare for the interview - 12 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident
Tip 2 : Be yourself
Tip 3 : Be true to yourself

Application resume tips for other job seekers

Tip 1 : Projects on resume
Tip 2 : Strong knowledge of any programming language.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Jobs at Kellton

View all

I applied via Naukri.com and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Discussed Salary
  • Q2. Asked around 20 questions on nodejs and 30 questions on angular

Top Kellton Senior Software Engineer Interview Questions and Answers

Q1. How to manage memory management in Python?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

I applied via Naukri.com and was interviewed before May 2021. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Ask technical from your domain....either from PHP, Nodejs or Java
  • Ans. Basic and advanced concept f related technologies....oops is common....also ask puzzle sometimes.
  • Answered by Tanuj Kumar
Round 2 - Coding Test 

3 coding program.

Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round with manager
Round 4 - HR 

(1 Question)

  • Q1. Human Resource round

Interview Preparation Tips

Topics to prepare for Kellton Full Stack Developer interview:
  • OOPS
  • MySQL
  • MongoDB
  • React.Js
  • Node.Js
  • Laravel
  • Lumen
  • Redis
  • AWS
Interview preparation tips for other job seekers - Try to give answer with confidence.. and go with truth .

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

I applied via Approached by Company and was interviewed in Dec 2018. There were 7 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Questions related to javascript, angular
  • Q2. Question related to npm
  • Q3. Question related to javascript
  • Q4. Question related to angular
  • Q5. Again they were checking my javascript
  • Q6. Tell your performance , discussion related to salary
  • Q7. They asked me the one puzzle question based on data structure

Interview Preparation Tips

Round: Resume Shortlist
Experience: I applied from LinkedIn then they email me for interview

Round: Manager round
Experience: Manager round just ask few questions which is related to your project

General Tips: Your basic should be very clear. Interview just checked how comfortable you give answer. Never give the wrong answer if you don't know simply say sorry I don't know the answer of this question. Whenever you go for interview just learned the things
Duration: 1-4 weeks

Top Kellton Software Engineer Interview Questions and Answers

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 contains an integer 'T' denoting th... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

I was interviewed before Aug 2016.

Interview Questionnaire 

4 Questions

  • Q1. Basic android , Java interview
  • Q2. Android , Java
  • Q3. HR Round
  • Q4. Manager round

Interview Preparation Tips

Round: Technical Interview
Experience: initial start from basic but cover all portion in android , java

Round: Technical Interview
Tips: question level is hard in java

Round: Behavioural Interview
Tips: manager round is simple

Round: HR Interview
Tips: simple

Contribute & help others!
anonymous
You can choose to be anonymous

Kellton Interview FAQs

How many rounds are there in Kellton interview?
Kellton interview process usually has 1-2 rounds. The most common rounds in the Kellton interview process are Technical, HR and One-on-one Round.
How to prepare for Kellton 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 Javascript, SQL, HTML, Python and JQuery.
What are the top questions asked in Kellton interview?

Some of the top questions asked at the Kellton interview -

  1. What is Sql joins, cte, Sp vs function, user defined typ...read more
  2. How to manage memory management in Pyth...read more
  3. what is setState in stateful widg...read more
How long is the Kellton interview process?

The duration of Kellton interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

DESIGNATION

JOBS

Kellton

No Jobs

INTERVIEWS

Kellton

No Interviews

INTERVIEWS

Practo

No Interviews

INTERVIEWS

Concentrix Catalyst

No Interviews

SALARIES

Aptroid Technologies

SALARIES

Concentrix Catalyst

INTERVIEWS

Practo

No Interviews

INTERVIEWS

GMR Group

No Interviews

Tell us how to improve this page.

Kellton Interview Process

based on 37 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
ITC Infotech Interview Questions
3.6
 • 334 Interviews
View all

Kellton Reviews and Ratings

based on 378 reviews

2.8/5

Rating in categories

2.7

Skill development

2.7

Work-life balance

2.7

Salary

2.6

Job security

2.7

Company culture

2.4

Promotions

2.7

Work satisfaction

Explore 378 Reviews and Ratings
Full Stack Java Developer

Gurgaon / Gurugram

2-6 Yrs

Not Disclosed

US IT & Non IT Recruiter - Hyderabad Location

Hyderabad / Secunderabad

0-1 Yrs

Not Disclosed

Explore more jobs
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