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

Updated 27 Mar 2025
Popular Designations

23 Interview questions

A Senior Software Engineer was asked 12mo ago
Q. How do you secure your APIs?
Ans. 

Securing APIs involves using authentication, authorization, encryption, and monitoring.

  • Implement authentication mechanisms such as OAuth, JWT, or API keys to verify the identity of clients accessing the API.

  • Use authorization to control access to different parts of the API based on roles and permissions.

  • Encrypt data transmitted between clients and the API using HTTPS to prevent eavesdropping.

  • Implement rate limiting...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 12mo ago
Q. What is normalization?
Ans. 

Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

  • Normalization is used to eliminate redundant data and ensure data dependencies are logical.

  • It involves dividing a database into two or more tables and defining relationships between them.

  • Normalization helps in reducing data redundancy, improving data integrity, and making data maintenance easier.

  • There are ...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 12mo ago
Q. How do singleton design patterns work?
Ans. 

Single design patterns work by providing a reusable solution to common problems in software development.

  • Design patterns help in organizing code and making it more maintainable.

  • They promote code reusability and flexibility.

  • Examples of single design patterns include Singleton, Factory, and Observer.

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 12mo ago
Q. How do you improve performance?
Ans. 

To increase performance, optimize code, use efficient algorithms, parallel processing, caching, and database indexing.

  • Optimize code by reducing unnecessary loops and improving data structures

  • Use efficient algorithms like binary search instead of linear search

  • Implement parallel processing to utilize multiple CPU cores

  • Utilize caching to store frequently accessed data for faster retrieval

  • Implement database indexing t...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 12mo ago
Q. How do you manage memory management in Python?
Ans. 

Memory management in Python involves automatic memory allocation and deallocation through garbage collection.

  • Python uses automatic memory management through garbage collection, so manual memory management is not required.

  • Use tools like memory_profiler to identify memory leaks and optimize memory usage.

  • Avoid creating unnecessary objects and use data structures efficiently to minimize memory usage.

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 12mo ago
Q. How do you revert the last commit?
Ans. 

Use 'git revert' command to revert the last commit.

  • Use 'git log' to find the commit hash of the last commit

  • Run 'git revert ' to revert the last commit

  • Commit the revert changes with a new commit message

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 12mo ago
Q. What are the differences between asynchronous, synchronous, and multithreaded programming?
Ans. 

Async is non-blocking, Sync is blocking, Multithread allows multiple threads to run concurrently.

  • Async allows the program to continue executing other tasks while waiting for a response, commonly used in web development with AJAX calls.

  • Sync blocks the program until a task is completed, commonly used in simple sequential programs.

  • Multithreading allows multiple threads to run concurrently, improving performance by ut...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked 12mo ago
Q. What is the difference between select_related and prefetch_related? Please provide an example.
Ans. 

select_related follows foreign key relationships and retrieves related objects in a single query, while prefetch_related retrieves related objects separately to avoid performance issues.

  • select_related is used for accessing related objects in a single query, reducing database hits

  • prefetch_related is used for accessing related objects separately to avoid performance issues

  • select_related is more efficient for one-to-...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 12mo ago
Q. What is a decorator, and can you provide an example?
Ans. 

Decorator is a design pattern in software development that allows behavior to be added to individual objects, either statically or dynamically.

  • Decorators are used to modify the behavior of functions or classes without changing their source code.

  • In Python, decorators are implemented using the @ symbol followed by the decorator function name.

  • Example: @decorator_function def some_function(): # function implement...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 12mo ago
Q. How do you optimize a query?
Ans. 

Optimizing query involves indexing, minimizing data retrieval, using proper joins, and avoiding unnecessary functions.

  • Use indexes on columns frequently used in WHERE clauses

  • Minimize data retrieval by selecting only necessary columns

  • Use proper joins (INNER JOIN, LEFT JOIN, etc.) instead of subqueries

  • Avoid unnecessary functions in WHERE clauses

View all Senior Software Engineer interview questions

Kellton Interview Experiences for Freshers

13 interviews found

Intern Interview Questions & Answers

user image vajrala varsha1016

posted on 28 Aug 2024

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

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Python coding (basic)
  • Q2. Python coding basics on java
  • Q3. Tell about your self
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Skilled in coding and problem-solving

    • Passionate about technology and innovation

  • Answered by AI
  • Q4. About my google apprenticeship
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(11 Questions)

  • Q1. How to manage memory management in Python?
  • Ans. 

    Memory management in Python involves automatic memory allocation and deallocation through garbage collection.

    • Python uses automatic memory management through garbage collection, so manual memory management is not required.

    • Use tools like memory_profiler to identify memory leaks and optimize memory usage.

    • Avoid creating unnecessary objects and use data structures efficiently to minimize memory usage.

  • Answered by AI
  • Q2. Difference between Async , Sync and multithread?
  • Ans. 

    Async is non-blocking, Sync is blocking, Multithread allows multiple threads to run concurrently.

    • Async allows the program to continue executing other tasks while waiting for a response, commonly used in web development with AJAX calls.

    • Sync blocks the program until a task is completed, commonly used in simple sequential programs.

    • Multithreading allows multiple threads to run concurrently, improving performance by utilizi...

  • Answered by AI
  • Q3. CI/CD pipeline deployment?
  • Ans. 

    CI/CD pipeline automates software deployment, ensuring faster delivery and higher quality through continuous integration and continuous delivery.

    • CI/CD stands for Continuous Integration and Continuous Deployment.

    • Continuous Integration involves automatically testing and merging code changes into a shared repository.

    • Continuous Deployment automates the release of code changes to production after passing tests.

    • Tools like Je...

  • Answered by AI
  • Q4. How to revert last commit?
  • Ans. 

    Use 'git revert' command to revert the last commit.

    • Use 'git log' to find the commit hash of the last commit

    • Run 'git revert ' to revert the last commit

    • Commit the revert changes with a new commit message

  • Answered by AI
  • Q5. Difference between select_related vs prefetch_related with example?
  • Ans. 

    select_related follows foreign key relationships and retrieves related objects in a single query, while prefetch_related retrieves related objects separately to avoid performance issues.

    • select_related is used for accessing related objects in a single query, reducing database hits

    • prefetch_related is used for accessing related objects separately to avoid performance issues

    • select_related is more efficient for one-to-one o...

  • Answered by AI
  • Q6. What is decorater write example?
  • Ans. 

    Decorator is a design pattern in software development that allows behavior to be added to individual objects, either statically or dynamically.

    • Decorators are used to modify the behavior of functions or classes without changing their source code.

    • In Python, decorators are implemented using the @ symbol followed by the decorator function name.

    • Example: @decorator_function def some_function(): # function implementation

    • ...

  • Answered by AI
  • Q7. How to optimise query?
  • Ans. 

    Optimizing query involves indexing, minimizing data retrieval, using proper joins, and avoiding unnecessary functions.

    • Use indexes on columns frequently used in WHERE clauses

    • Minimize data retrieval by selecting only necessary columns

    • Use proper joins (INNER JOIN, LEFT JOIN, etc.) instead of subqueries

    • Avoid unnecessary functions in WHERE clauses

  • Answered by AI
  • Q8. What is normalisation?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is used to eliminate redundant data and ensure data dependencies are logical.

    • It involves dividing a database into two or more tables and defining relationships between them.

    • Normalization helps in reducing data redundancy, improving data integrity, and making data maintenance easier.

    • There are diffe...

  • Answered by AI
  • Q9. How to increase performance?
  • Ans. 

    To increase performance, optimize code, use efficient algorithms, parallel processing, caching, and database indexing.

    • Optimize code by reducing unnecessary loops and improving data structures

    • Use efficient algorithms like binary search instead of linear search

    • Implement parallel processing to utilize multiple CPU cores

    • Utilize caching to store frequently accessed data for faster retrieval

    • Implement database indexing to spe...

  • Answered by AI
  • Q10. How to secure your API’s?
  • Ans. 

    Securing APIs involves using authentication, authorization, encryption, and monitoring.

    • Implement authentication mechanisms such as OAuth, JWT, or API keys to verify the identity of clients accessing the API.

    • Use authorization to control access to different parts of the API based on roles and permissions.

    • Encrypt data transmitted between clients and the API using HTTPS to prevent eavesdropping.

    • Implement rate limiting and ...

  • Answered by AI
  • Q11. How single design patterns work?
  • Ans. 

    Single design patterns work by providing a reusable solution to common problems in software development.

    • Design patterns help in organizing code and making it more maintainable.

    • They promote code reusability and flexibility.

    • Examples of single design patterns include Singleton, Factory, and Observer.

  • Answered by AI
Round 2 - Client Interview 

(1 Question)

  • Q1. Questions from your resume.
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and your tenure employments.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic apti questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic testing knowledge
Round 3 - HR 

(1 Question)

  • Q1. About yourself s s
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 Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is oops concept why is used
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability of different classes to be treated as instances of th...

  • Answered by AI
  • Q2. Why inheritance used in projects
  • Ans. 

    Inheritance is used in projects to promote code reusability, reduce redundancy, and improve maintainability.

    • Inheritance allows for the creation of a hierarchy of classes where common attributes and methods can be defined in a base class and inherited by subclasses.

    • It helps in promoting code reusability by allowing subclasses to inherit properties and methods from a base class, reducing redundancy in code.

    • Inheritance al...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is Veri low package provide dot joine if you are fresher

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

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

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Kellton?
Ask anonymously on communities.

Kellton Interview FAQs

How many rounds are there in Kellton interview for freshers?
Kellton interview process for freshers usually has 2 rounds. The most common rounds in the Kellton interview process for freshers are Technical, HR and Client Interview.
How to prepare for Kellton 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 Communication Skills, US IT Recruitment, Excel, Java and Javascript.
What are the top questions asked in Kellton interview for freshers?

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

  1. How to manage memory management in Pyth...read more
  2. Difference between select_related vs prefetch_related with examp...read more
  3. Difference between Async , Sync and multithre...read more
What are the most common questions asked in Kellton HR round for freshers?

The most common HR questions asked in Kellton interview are for freshers -

  1. What are your strengths and weakness...read more
  2. What are your salary expectatio...read more
  3. Why are you looking for a chan...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.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 4 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 370 Interviews
3i Infotech Interview Questions
3.4
 • 150 Interviews
Microland Interview Questions
3.5
 • 137 Interviews
Sify Technologies Interview Questions
3.8
 • 129 Interviews
Mastek Interview Questions
3.6
 • 127 Interviews
Maveric Systems Interview Questions
3.5
 • 124 Interviews
Sonata Software Interview Questions
3.4
 • 122 Interviews
View all

Kellton Reviews and Ratings

based on 416 reviews

2.7/5

Rating in categories

2.7

Skill development

2.7

Work-life balance

2.6

Salary

2.6

Job security

2.6

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 416 Reviews and Ratings
Python Software Developer

Gurgaon / Gurugram

3-5 Yrs

Not Disclosed

Java Lead

Gurgaon / Gurugram,

Delhi/Ncr

7-10 Yrs

₹ 20-30 LPA

Full Stack Java Developer

Gurgaon / Gurugram

2-6 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
394 salaries
unlock blur

₹5.6 L/yr - ₹22 L/yr

Software Engineer
391 salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Lead Engineer
191 salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Software Developer
130 salaries
unlock blur

₹2.8 L/yr - ₹9.5 L/yr

Module Lead
94 salaries
unlock blur

₹10 L/yr - ₹25 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