Filter interviews by
Top trending discussions
I applied via Naukri.com and was interviewed before Jun 2019. There were 3 interview rounds.
I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.
Capital market is a financial market where long-term securities like stocks, bonds, and other financial instruments are traded.
Capital market is a platform for companies to raise long-term funds from investors.
It includes both primary market (where new securities are issued) and secondary market (where existing securities are traded).
The capital market is regulated by the Securities and Exchange Board of India (SEBI) i...
Money market refers to a segment of the financial market where short-term borrowing and lending of funds take place.
Money market deals with short-term financial instruments such as treasury bills, commercial papers, certificates of deposit, etc.
It is a low-risk market as the instruments have a short maturity period and are highly liquid.
The interest rates in the money market are determined by the demand and supply of f...
IPO stands for Initial Public Offering. It is the first time a company offers its shares to the public for investment.
IPO is a way for companies to raise capital by selling shares to the public.
It is a process where a private company becomes a public company.
The shares are sold to institutional investors and retail investors.
The price of the shares is determined through a process called book building.
Examples of succes
Bonds are debt securities issued by companies or governments, while mutual funds are investment vehicles that pool money from multiple investors.
Bonds are fixed-income securities that pay a fixed interest rate to the bondholder.
Mutual funds are a collection of stocks, bonds, and other securities that are managed by a professional fund manager.
Bonds are generally considered less risky than stocks, but also offer lower r...
I applied via Referral and was interviewed in Dec 2020. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.
IDisposable is an interface used to release unmanaged resources.
It is used to release unmanaged resources like file handles, database connections, etc.
It has a single method called Dispose() which is used to release the resources.
It is implemented by classes that use unmanaged resources and needs to be disposed of.
Example: SqlConnection class implements IDisposable to release the database connection.
Example: FileStream...
Dependency Injection is a design pattern that allows objects to receive dependencies rather than creating them internally.
Dependency Injection is used to reduce tight coupling between software components.
It allows for easier testing and maintenance of code.
There are three types of Dependency Injection: Constructor Injection, Setter Injection, and Interface Injection.
Frameworks like Spring and Angular provide built-in s
Concatenate the values in the given integer array with comma.
Convert the integer array to string array using Arrays.toString()
Use String.join() method to concatenate with comma
Interfaces and abstract classes are used for abstraction and defining contracts.
Interfaces are a collection of abstract methods that define a contract for a class to implement.
Abstract classes are classes that cannot be instantiated and can have both abstract and concrete methods.
Interfaces can be implemented by multiple classes, while a class can only inherit from one abstract class.
Interfaces are used for loose coupl...
No, abstract classes cannot be instantiated.
Abstract classes are incomplete and cannot be instantiated on their own.
They can only be used as a base class for other classes.
Instantiation of an abstract class will result in a compile-time error.
However, concrete classes that inherit from the abstract class can be instantiated.
SOLID is a set of principles for object-oriented programming to make software more maintainable and scalable.
S - Single Responsibility Principle
O - Open/Closed Principle
L - Liskov Substitution Principle
I - Interface Segregation Principle
D - Dependency Inversion Principle
Example: Using Single Responsibility Principle to separate UI and business logic
Example: Using Open/Closed Principle to extend functionality without mo
We used the Model-View-Controller (MVC) design pattern in our application.
MVC separates the application into three interconnected components: the model, the view, and the controller.
The model represents the data and business logic of the application.
The view displays the data to the user.
The controller handles user input and updates the model and view accordingly.
MVC promotes separation of concerns and modularity.
Examp...
posted on 25 Apr 2021
IoT stands for Internet of Things, which refers to the network of physical devices, vehicles, home appliances, and other items embedded with sensors, software, and connectivity.
IoT enables devices to communicate with each other and with humans, creating a seamless and efficient system.
Examples of IoT devices include smart thermostats, fitness trackers, and self-driving cars.
IoT has the potential to revolutionize indust...
IoT and Digital 4.0 are both related to the use of technology, but IoT focuses on connecting devices while Digital 4.0 is about the integration of technology in all aspects of business.
IoT is about connecting devices and collecting data for analysis
Digital 4.0 is about the integration of technology in all aspects of business
IoT is a subset of Digital 4.0
IoT is more focused on the physical world while Digital 4.0 is mor...
Process flow in a manufacturing plant involves a series of steps to convert raw materials into finished products.
Raw materials are received and inspected for quality
Materials are then stored in designated areas
Production planning and scheduling is done
Materials are then moved to the production area
Manufacturing process takes place
Finished products are inspected and tested
Packaging and labeling is done
Products are store...
I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.
posted on 9 Sep 2020
I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.
Python compiles source code to bytecode for faster execution, stored in .pyc files.
Python interpreter compiles source code to bytecode before execution
Bytecode is platform-independent and faster to execute than source code
Compiled bytecode is stored in .pyc files for future use and faster startup time
If source code is modified, .pyc files are automatically recompiled
Django life cycle involves request processing, URL routing, view function execution, template rendering, and response generation.
When a request is made, Django checks the URL patterns defined in urls.py file.
If a match is found, the corresponding view function is executed.
The view function processes the request and returns a response.
The response is rendered using a template, if applicable.
The final response is sent ba
Ownership of the project approach refers to taking responsibility for the project's success and making decisions accordingly.
The owner of the project approach should have a clear understanding of the project's goals and objectives.
They should be able to make informed decisions about the project's direction and prioritize tasks accordingly.
The owner should also be accountable for the project's success or failure and be ...
Difference between sort and sorted, dump vs dumps, load vs loads etc.
sort() is a method of list object while sorted() is a built-in function
dump() serializes an object to a file while dumps() serializes to a string
load() deserializes an object from a file while loads() deserializes from a string
Design patterns are reusable solutions to common problems in software design.
Design patterns provide a structured approach to solving design problems.
Python has several design patterns such as Singleton, Factory, Observer, etc.
Each design pattern has its own purpose and usage.
Design patterns promote code reusability, maintainability, and scalability.
Understanding design patterns helps in writing cleaner and more effici
Data structures in Python: dict, tuple, list, set, string
dict: unordered collection of key-value pairs
tuple: ordered, immutable collection of elements
list: ordered, mutable collection of elements
set: unordered collection of unique elements
string: ordered collection of characters
I have used multiple python modules for various purposes.
I have used NumPy for numerical computations.
I have used Pandas for data analysis and manipulation.
I have used Matplotlib for data visualization.
I have used Flask for web development.
I have used Requests for making HTTP requests.
I have used BeautifulSoup for web scraping.
I have used Scikit-learn for machine learning tasks.
I have used TensorFlow for deep learning
Yes, but only if the list is immutable.
Lists are mutable and cannot be used as dict keys.
Tuples are immutable and can be used as dict keys.
If a list needs to be used as a key, it can be converted to a tuple.
List slices are a way to extract a portion of a list by specifying start and end indices.
List slices are denoted by using square brackets with start and end indices separated by a colon.
The start index is inclusive and the end index is exclusive.
If the start index is omitted, it defaults to 0. If the end index is omitted, it defaults to the length of the list.
Negative indices can be used to count from the end of the li...
Lambda functions are anonymous functions that can be passed as arguments to other functions.
Lambda functions are also known as anonymous functions because they don't have a name.
They are often used as arguments to higher-order functions like map, reduce, and filter.
Map applies a function to each element of an array and returns a new array with the results.
Reduce applies a function to the elements of an array and return...
Python uses automatic memory management through garbage collection.
Python uses reference counting to keep track of objects in memory.
When an object's reference count reaches zero, it is deleted by the garbage collector.
Python also uses a cyclic garbage collector to detect and delete objects with circular references.
Memory can be managed manually using the ctypes module.
Python's memory management is efficient and transp
GIL stands for Global Interpreter Lock, which is a mechanism used in CPython to ensure thread safety.
GIL is a mutex that allows only one thread to execute Python bytecode at a time.
It is necessary because CPython's memory management is not thread-safe.
GIL can cause performance issues in CPU-bound multi-threaded applications.
However, it does not affect I/O-bound or multi-process applications.
Alternative Python implement...
Threading in Python allows multiple threads of execution to run concurrently within a single process.
Python's threading module provides a way to create and manage threads.
Threads share the same memory space and can access the same variables and data structures.
Threading can improve performance for I/O-bound tasks, but not for CPU-bound tasks.
Python's Global Interpreter Lock (GIL) limits true parallelism in multi-thread...
posted on 22 Dec 2020
I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.
posted on 19 Nov 2020
I once went out of the box to help a customer by personally delivering their order when the delivery service failed.
Delivery service failed to deliver a customer's order
To ensure customer satisfaction, I personally delivered the order
Customer was delighted with the extra effort
based on 4 reviews
Rating in categories
Talent Acquisition Executive
4
salaries
| ₹1.5 L/yr - ₹3.4 L/yr |
Lead Talent Acquisition
4
salaries
| ₹2 L/yr - ₹2.8 L/yr |
Talent Acquisition Specialist
3
salaries
| ₹2 L/yr - ₹2.3 L/yr |
DXC Technology
Mphasis
Nagarro
Hexaware Technologies