Filter interviews by
I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.
Python is a high-level programming language known for its simplicity and readability.
Python is an interpreted language, which means it does not need to be compiled before running.
It has a large standard library that provides many useful modules and functions.
Python supports multiple programming paradigms, including procedural, object-oriented, and functional programming.
It is widely used in web development, data analys...
reang is not a recognized term in Python development.
reang is not a Python keyword, module, or function.
There is no known reference or documentation for reang in Python.
It is possible that reang is a typo or a mispronunciation of another term.
A while loop is a control flow statement that allows code to be executed repeatedly based on a condition.
The loop continues until the condition becomes false
The condition is checked before each iteration
The loop body must include a way to modify the condition to avoid an infinite loop
A nested loop is a loop inside another loop. It allows iterating over multiple levels of data structures.
Nested loops are used when we need to perform repetitive tasks within repetitive tasks.
The inner loop is executed for each iteration of the outer loop.
Nested loops can be used to iterate over multi-dimensional arrays or nested data structures.
Example: Printing a multiplication table using nested loops.
A for loop is a control flow statement that iterates over a sequence of elements and executes a block of code for each element.
A for loop is used to iterate over a sequence such as a list, tuple, or string.
It consists of an initialization, condition, and increment/decrement statement.
The loop continues until the condition is false.
The code block inside the loop is executed for each element in the sequence.
Example: for
A keyword is a reserved word in a programming language that has a specific meaning and cannot be used as a variable name.
Keywords are used to define the syntax and structure of a programming language.
They cannot be used as variable names or identifiers.
Examples of keywords in Python include 'if', 'else', 'for', 'while', 'def', 'class', and 'import'.
A function is a block of code that performs a specific task and can be called multiple times throughout a program.
Functions are defined using the 'def' keyword followed by the function name and parentheses.
Functions can take arguments (inputs) and return values (outputs).
Functions can be called multiple times throughout a program, making code more efficient and modular.
Example: def add_numbers(x, y): return x + y
Exampl
Data type is a classification of data based on the type of value it holds.
Data type determines the operations that can be performed on the data
Examples of data types include integers, strings, booleans, and floats
Data types can be static or dynamic depending on the programming language
PEP stands for Python Enhancement Proposal, which is a design document providing information or describing a new feature for Python.
PEP is used to propose and discuss new features or changes in Python
PEP is maintained by the Python community
PEP is assigned a number and categorized based on its type
Examples of PEPs include PEP 8 (Style Guide for Python Code) and PEP 20 (The Zen of Python)
Lists are mutable while tuples are immutable in Python.
Lists use square brackets [] while tuples use parentheses ().
Elements in a list can be added, removed, or modified while tuples cannot be modified.
Lists are used for collections of homogeneous items while tuples are used for heterogeneous items.
Lists are generally used for large collections of data while tuples are used for smaller collections or for data that shou...
Lambda functions are anonymous functions that can be defined in a single line of code.
Lambda functions are defined using the lambda keyword.
They can take any number of arguments, but can only have one expression.
They are often used as arguments for higher-order functions.
Example: lambda x: x**2 defines a lambda function that squares its input.
Arrays are homogeneous data structures while lists are heterogeneous data structures in Python.
Arrays are fixed in size while lists are dynamic.
Arrays can only contain elements of the same data type while lists can contain elements of different data types.
Arrays are faster and more memory-efficient for numerical operations.
Lists have more built-in functions and are more versatile for general-purpose programming.
Example...
I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.
I applied via LinkedIn and was interviewed in Jul 2022. There were 2 interview rounds.
Two to three rounds are there 1. Coding
2. L1
3. L2
Test from normal question
posted on 28 Oct 2024
I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.
SNS is a pub/sub messaging service while SQS is a message queue service in AWS architecture.
SNS allows for push notifications to multiple subscribers, while SQS is used for decoupling services and handling asynchronous tasks.
SNS is used for real-time messaging and event-driven architecture, while SQS is used for reliable message processing and scaling.
SNS supports multiple message delivery protocols like HTTP, HTTPS, E...
Eventbridge is a serverless event bus service provided by AWS for connecting applications using events.
Eventbridge allows different AWS services, SaaS applications, and custom applications to communicate with each other through events.
It simplifies the process of building event-driven architectures by decoupling producers and consumers of events.
Eventbridge can be used to trigger automated workflows, connect different ...
I applied via campus placement at Vimal Jyothi Engineering College, Kannur and was interviewed in Dec 2023. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in May 2023. There were 2 interview rounds.
I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.
Generate all valid combinations of parentheses for given n pairs
Use backtracking to generate all valid combinations of parentheses
Keep track of the number of open and close parentheses used
Add open parenthesis if there are remaining open parentheses, add close parenthesis if there are more open than close parentheses
I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.
Scaling a database involves horizontal or vertical scaling, with types including sharding, replication, and partitioning. Flask handles multiple requests using a WSGI server like Gunicorn.
Types of scaling include horizontal scaling (adding more servers), vertical scaling (upgrading server resources), sharding (splitting data across multiple servers), replication (copying data to multiple servers), and partitioning (div...
I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.
Tuple is immutable and ordered, while list is mutable and ordered. Tuples are used for fixed data, lists for dynamic data.
Tuple is created using parentheses (), while list is created using square brackets []
Tuples are immutable, meaning their elements cannot be changed once defined, while lists are mutable and can be modified
Tuples are typically used for fixed data that will not change, while lists are used for dynamic...
Monolithic architecture is a single unified unit while microservices architecture is composed of small, independent services.
Monolithic architecture is a single, indivisible unit where all components are tightly coupled.
Microservices architecture breaks down the application into smaller, independent services that communicate with each other through APIs.
Monolithic applications are easier to develop and deploy but can b...
Code to find second largest number in an array without using built-in functions
Iterate through the array to find the largest number
Keep track of the largest number and update it if a larger number is found
Once the largest number is found, iterate again to find the second largest number
Mixins in Django are a way to reuse code across multiple classes by providing methods and attributes that can be inherited.
Mixins are classes that provide methods and attributes to be inherited by other classes.
They are used to add common functionality to multiple classes without repeating code.
Mixins are not meant to be instantiated on their own, but rather to be inherited by other classes.
An example of a mixin in Dja...
Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Flask is a lightweight WSGI web application framework.
Django is a full-featured framework with built-in ORM, admin panel, and authentication system, while Flask is more lightweight and flexible.
Django follows the 'batteries included' philosophy, providing many built-in features out of the box, whereas Flask is mor...
Different testing frameworks in Django include Django's built-in test framework, pytest, and unittest.
Django's built-in test framework: Provides tools for testing Django applications and is easy to use.
pytest: A popular testing framework that offers more features and flexibility compared to Django's built-in test framework.
unittest: A standard Python testing framework that can also be used for testing Django applicatio
We use AWS services like EC2, S3, RDS, Lambda, and CloudWatch in our project.
EC2 - for hosting our application servers
S3 - for storing and serving static assets
RDS - for managing our relational database
Lambda - for serverless computing
CloudWatch - for monitoring and logging
Decorator in Python is a design pattern that allows adding new functionality to an existing object without modifying its structure.
Decorators are functions that modify the behavior of other functions or methods.
They are denoted by @decorator_name above the function definition.
Decorators can be used for logging, timing, authentication, etc.
Example: @staticmethod, @classmethod, @property
Django code to render hello world template
Create a new Django project
Create a new Django app within the project
Create a template file with 'hello world' content
Update views.py to render the template
Update urls.py to map a URL to the view
Software Engineer
30
salaries
| ₹2 L/yr - ₹8.6 L/yr |
Software Developer
26
salaries
| ₹1.4 L/yr - ₹6.5 L/yr |
Desktop Support Engineer
14
salaries
| ₹1.2 L/yr - ₹3.5 L/yr |
Softwaretest Engineer
13
salaries
| ₹1.8 L/yr - ₹9.4 L/yr |
GIS Engineer
12
salaries
| ₹1 L/yr - ₹2.4 L/yr |
TCS
Wipro
HCLTech
Tech Mahindra