Add office photos
Engaged Employer

Kellton

2.9
based on 348 Reviews
Filter interviews by

10+ Interview Questions and Answers

Updated 29 Jun 2024
Popular Designations

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.

Add your answer

Q2. 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 or many-to-one relationships, while prefetch_related is bet...read more

Add your answer

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: UITableViewDelegate

  • Notifications: Broadcast messages to multip...read more

Add your answer

Q4. 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 maintained by Facebook, while Angular is maintained by Google

Add your answer
Discover null interview dos and don'ts from real experiences

Q5. 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 utilizing multiple CPU cores, commonly used in applications with ...read more

Add your answer

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

  • Decorators can be used for logging, authentication, caching, et...read more

Add your answer
Are these interview questions helpful?

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

Add your answer

Q8. 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 ViewModel would handle data retrieval and manipulation, while t...read more

Add your answer
Share interview questions and help millions of jobseekers 🌟

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

Add your answer

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

Add your answer

Q11. 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 different normal forms such as 1NF, 2NF, 3NF, BCNF, and 4NF, ea...read more

Add your answer

Q12. 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 speed up query performance

Add your answer

Q13. 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 monitoring to detect and prevent malicious activities like...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at null

based on 5 interviews in the last 1 year
1 Interview rounds
Technical Round
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Senior Software Engineer Interview Questions from Similar Companies

3.9
 • 39 Interview Questions
3.9
 • 26 Interview Questions
3.5
 • 24 Interview Questions
4.4
 • 16 Interview Questions
4.1
 • 15 Interview Questions
3.7
 • 12 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter