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 Senior Software Engineer Interview Questions and Answers

Updated 12 Jul 2024

14 Interview questions

A Senior Software Engineer was asked 11mo 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...

A Senior Software Engineer was asked 11mo 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 ...

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
A Senior Software Engineer was asked 11mo 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.

A Senior Software Engineer was asked 11mo 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...

A Senior Software Engineer was asked 11mo 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.

A Senior Software Engineer was asked 11mo 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

A Senior Software Engineer was asked 11mo 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...

Are these interview questions helpful?
A Senior Software Engineer was asked 11mo 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-...

A Senior Software Engineer was asked 11mo 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...

A Senior Software Engineer was asked 11mo 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

Kellton Senior Software Engineer Interview Experiences

6 interviews found

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
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Related to Your Work ex
  • Q2. Related to your profile
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops c# sql abstract class
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic javascript questions like closures and hoisting
  • Q2. What is difference between react and angular
  • Ans. 

    React is a JavaScript library for building user interfaces, while Angular is a full-fledged framework for building web applications.

    • React is a library, while Angular is a framework

    • React uses a virtual DOM, while Angular uses a real DOM

    • React is more lightweight and flexible, while Angular has more built-in features and tools

    • React is easier to learn for beginners, while Angular has a steeper learning curve

    • React is mainta...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Normal HR discussions
Round 2 - Technical 

(3 Questions)

  • Q1. Technicals questions asked related to swift programming and iOS
  • Q2. What is mvvm how to use in project
  • Ans. 

    MVVM is a software architectural pattern that separates the user interface from the business logic and data.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View represents the user interface

    • ViewModel acts as a mediator between the Model and View

    • ViewModel exposes data and commands to the View

    • MVVM promotes separation of concerns and testability

    • Example: Using MVVM in a mobile app, the ViewM...

  • Answered by AI
  • Q3. What is tuple, clousures, delegates, notifications
  • Ans. 

    Tuple is an ordered collection of elements. Closures are self-contained blocks of code. Delegates are references to functions. Notifications are a way to send messages between objects.

    • Tuple: Used to group multiple values together. Example: (1, 'apple', True)

    • Closures: Encapsulate code and capture variables. Example: { (x: Int) -> Int in return x * 2 }

    • Delegates: Allow one object to communicate with another. Example: UITa...

  • Answered by AI
Round 3 - Coding Test 

Asked to hit a xml api and show data to table view

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic things in swift and be confident

Skills evaluated in this interview

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

View All
Interview Tips & Stories
2w
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.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They specifically didn’t asked any questions by looking at my strong resume but just asked me if to come Hyderabad for training of a month

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good in technical knowledge then it would be easy for you to get opportunity here at client site you will learn a lot as mostly you will be at your own, companies technical support is not very good so mostly you are on your own
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 4 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 tips
Round 2 - Aptitude Test 

Basic Apti questions

Round 3 - Coding Test 

Basic Java Coding test

Round 4 - Technical 

(1 Question)

  • Q1. Basic JAVA fundamentals

Interview Preparation Tips

Interview preparation tips for other job seekers - Newgen is a product-based company, and most of the employees work on the products as this is not a plus point for growth in their career.

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic oops concept. Code : linked list, deleting middle element in array.

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask questions about the project you are supposed to work on. Reality can be totally different from what you are expecting. In my case I was hired for Development team. But I got support with no coding at all.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Implement LinkedList and insert element at last
  • Ans. 

    Implement LinkedList and insert element at last

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head and tail pointers

    • Implement a method in LinkedList class to insert element at the end

  • Answered by AI

Skills evaluated in this interview

Kellton Interview FAQs

How many rounds are there in Kellton Senior Software Engineer interview?
Kellton interview process usually has 1-2 rounds. The most common rounds in the Kellton interview process are Technical, HR and Coding Test.
How to prepare for Kellton Senior 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 Javascript, Debugging, Front End, Gaming and Information Technology.
What are the top questions asked in Kellton Senior Software Engineer interview?

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

  1. How to manage memory management in Pyth...read more
  2. Difference between select_related vs prefetch_related with examp...read more
  3. what is tuple, clousures, delegates, notificati...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 5 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more
Kellton Senior Software Engineer Salary
based on 394 salaries
₹5.6 L/yr - ₹22 L/yr
15% less than the average Senior Software Engineer Salary in India
View more details

Kellton Senior Software Engineer Reviews and Ratings

based on 46 reviews

2.8/5

Rating in categories

2.7

Skill development

2.8

Work-life balance

2.8

Salary

2.6

Job security

2.8

Company culture

2.4

Promotions

2.7

Work satisfaction

Explore 46 Reviews and Ratings
Senior Software Engineer
394 salaries
unlock blur

₹10.4 L/yr - ₹18.4 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