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

Updated 12 Jul 2024

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

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

Senior Software Engineer Interview Questions Asked at Other Companies for Fresher

Q1. Given an array of n elements and a value k, find the kth largest ... read more
Q2. How do you create GQL server, directive in GQL, Fragments in GQL ... read more
asked in Arcesium
Q3. Given a grid representing an ocean (where mat[i][j] = 1 represent ... read more
Q4. Write an API to implement HTTP GET method to hit an external data ... read more
asked in LTIMindtree
Q5. Explain microservice architecture and how to implement it using S ... read more
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.

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

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.

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

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

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

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

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

Kellton Senior Software Engineer Interview Experiences for Freshers

1 interview 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

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

Senior Software Engineer Interview Questions Asked at Other Companies for Fresher

Q1. Given an array of n elements and a value k, find the kth largest ... read more
Q2. How do you create GQL server, directive in GQL, Fragments in GQL ... read more
asked in Arcesium
Q3. Given a grid representing an ocean (where mat[i][j] = 1 represent ... read more
Q4. Write an API to implement HTTP GET method to hit an external data ... read more
asked in LTIMindtree
Q5. Explain microservice architecture and how to implement it using S ... read more

Interview Questionnaire 

3 Questions

  • Q1. -React lifecycle?-Fragment vs React. Fragment? -React pure component?
  • Ans. 

    React lifecycle, Fragment vs React.Fragment, React.PureComponent

    • React lifecycle consists of mounting, updating, and unmounting phases

    • Fragment is a shorthand for React.Fragment, used to group multiple elements

    • React.PureComponent is a class component that implements shouldComponentUpdate method for performance optimization

  • Answered by AI
  • Q2. JavaScript hoisting?- Let, var and cont difference?
  • Ans. 

    JavaScript hoisting and differences between let, var and const.

    • Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Var declarations are hoisted to the top of their scope, while let and const declarations are not.

    • Var can be redeclared and reassigned, let can be reassigned but not redeclared, and const cannot be reassigned or redeclared.

    • Using const is recommend...

  • Answered by AI
  • Q3. Dofferemt ways to prevent rerendering of a child component in react?
  • Ans. 

    Prevent rerendering of a child component in React

    • Use shouldComponentUpdate() lifecycle method

    • Use React.memo() to memoize functional components

    • Use PureComponent instead of Component

    • Pass props as a callback function to avoid unnecessary re-renders

    • Use React.PureComponent for class components

    • Use React.memo() for functional components

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java collections, program to remove duplicate from array, cursor, indexes in database,stream api's , some questions of hibernate and spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Atleast prepare core java fully along with some basic db concepts and all keys and prepare spring boot

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

Interview Questionnaire 

1 Question

  • Q1. OOPS concept based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basics and be confident about them
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you read an external text file
  • Ans. 

    To read an external text file, you can use file handling techniques in programming languages like Python or Java.

    • Use file handling functions like open(), read(), and close() in Python to read an external text file.

    • In Java, use classes like FileReader and BufferedReader to read text files.

    • Specify the file path and mode (read mode) when opening the file.

    • Read the contents of the file line by line or as a whole, depending ...

  • Answered by AI
  • Q2. Write a java program to find the occurrences of characters
  • Ans. 

    Java program to find occurrences of characters in a string

    • Create a HashMap to store characters and their counts

    • Iterate through the string and update the counts in the HashMap

    • Print the characters and their counts from the HashMap

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard work is a must

Skills evaluated in this interview

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Questions on ref cursors and bulk collect
  • Q2. Nested table record type variable creation and their syntax.
  • Ans. 

    Nested table record types in PL/SQL allow complex data structures for efficient data handling.

    • A nested table is a collection type that can hold an arbitrary number of elements.

    • Syntax for creating a nested table type: `CREATE TYPE nested_table_type AS TABLE OF data_type;`

    • To declare a variable of a nested table type: `DECLARE my_nested_table nested_table_type;`

    • You can initialize a nested table using: `my_nested_table := ...

  • Answered by AI
  • Q3. Triggers and procedures and packages differences.
  • Ans. 

    Triggers respond to database events; procedures are reusable code blocks; packages group related procedures/functions.

    • Triggers are automatically executed in response to specific events (e.g., INSERT, UPDATE).

    • Example of a trigger: A trigger that logs changes to a table whenever a row is updated.

    • Procedures are named blocks of code that can be executed explicitly by calling them.

    • Example of a procedure: A procedure that ca...

  • Answered by AI
  • Q4. ACID properties
  • Ans. 

    ACID properties ensure reliable transactions in databases: Atomicity, Consistency, Isolation, Durability.

    • Atomicity: Transactions are all-or-nothing. Example: If a bank transfer fails, both accounts remain unchanged.

    • Consistency: Transactions bring the database from one valid state to another. Example: A transaction must not violate any database rules.

    • Isolation: Concurrent transactions do not affect each other. Example: ...

  • Answered by AI
  • Q5. Materialized views and db links
  • Q6. Different types of cursors
  • Ans. 

    Cursors are database objects used to retrieve and manipulate data row by row.

    • 1. Implicit Cursors: Automatically created by SQL for single SQL statements. Example: SELECT * FROM employees;

    • 2. Explicit Cursors: Defined by the programmer for complex queries. Example: DECLARE cursor_name CURSOR FOR SELECT * FROM orders;

    • 3. Forward-only Cursors: Can only move forward through the result set. Example: Used for simple read opera...

  • Answered by AI
  • Q7. Autonomous transaction and merge statement

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and best of luck
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 2022. There were 3 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 

Mcat Aptitude for general MCQ

Round 3 - Technical 

(5 Questions)

  • Q1. Python/Java Development test
  • Q2. What is Object-oriented programming?
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Encapsulation: Objects can encapsulate data and behavior within a single unit.

    • Inheritance: Objects can inherit attributes and methods from other objects.

    • Polymorphism: Objects can take on different forms or have multiple behaviors.

    • Example: Classes in Java or C++ are used to create objects with propertie...

  • Answered by AI
  • Q3. Explain API Gateway.
  • Ans. 

    API Gateway is a server that acts as an API front-end, receiving API requests, enforcing throttling and security policies, passing requests to the back-end service, and then passing the response back to the requester.

    • API Gateway acts as a single entry point for all client requests to the backend services.

    • It can handle tasks like authentication, authorization, rate limiting, caching, and request/response transformations...

  • Answered by AI
  • Q4. What is Spring?
  • Ans. 

    Spring is a lightweight framework for building enterprise applications in Java.

    • Provides comprehensive infrastructure support for developing Java applications

    • Facilitates easier configuration and integration of various components

    • Promotes good programming practices like dependency injection and aspect-oriented programming

    • Includes modules like Spring Core, Spring MVC, Spring Security, etc.

    • Example: @Autowired annotation for...

  • Answered by AI
  • Q5. 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 data redundancy by breaking up tables into smaller tables and defining relationships between them.

    • It helps in reducing data anomalies such as insertion, update, and deletion anomalies.

    • Normalization is achieved through a series of normal forms (1NF, 2NF, 3NF, BCNF, etc.)

    • For exa...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Technologies and be confident

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Difference between Sanity & Smoke
  • Ans. 

    Sanity testing is a subset of regression testing, while smoke testing is a subset of acceptance testing.

    • Sanity testing is performed to ensure that the critical functionalities of the software are working as expected.

    • Smoke testing is performed to verify if the software build is stable enough for further testing.

    • Sanity testing is usually performed after major changes or bug fixes.

    • Smoke testing is performed on each build ...

  • Answered by AI

Skills evaluated in this interview

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

Basic Maths reasoning, general question genre jdnfk hdsfjks kjhbdfk

Round 2 - HR 

(1 Question)

  • Q1. Why you change the company

Kellton Interview FAQs

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

Some of the top questions asked at the Kellton Senior Software Engineer 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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more
Kellton Senior Software Engineer Salary
based on 396 salaries
₹10.4 L/yr - ₹18.4 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 47 reviews

2.8/5

Rating in categories

2.6

Skill development

2.7

Work-life balance

2.8

Salary

2.6

Job security

2.8

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 47 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
191 salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Software Developer
130 salaries
unlock blur

₹2.8 L/yr - ₹8.6 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