Filter interviews by
Be the first one to contribute and help others!
posted on 13 Jan 2025
I was interviewed in Nov 2024.
Middleware in .NET can be implemented using the 'UseMiddleware' method in the Startup class.
Use the 'UseMiddleware' method in the Configure method of the Startup class to add middleware in the request pipeline.
Create a custom middleware class that implements the 'IMiddleware' interface.
Register the custom middleware class in the ConfigureServices method of the Startup class.
Common exceptions encountered in middleware include timeout errors, connection errors, and invalid input errors.
Timeout errors occur when a request takes too long to process.
Connection errors happen when there is a problem connecting to a database or external service.
Invalid input errors occur when the data provided does not meet the expected format or criteria.
Change detection in Angular is the process of detecting changes in the application state and updating the view accordingly.
Angular uses change detection to keep the UI in sync with the application state.
It compares the current state of the application with the previous state to determine what has changed.
If a change is detected, Angular updates the view to reflect the new state.
Change detection can be triggered by user...
Subject in Angular is used for multicasting observables to multiple subscribers.
Subject is a type of Observable that allows values to be multicasted to multiple Observers.
It acts as both an Observable and an Observer.
Subjects are hot Observables, meaning they start emitting values immediately upon creation.
Example: const subject = new Subject(); subject.next(1); subject.subscribe(value => console.log(value)); // Out
I applied via Naukri.com and was interviewed before Aug 2022. There were 3 interview rounds.
Store display as per the standard
Maintaining colour blocking and store look and feel is crucial for a visually appealing and cohesive visual merchandising strategy.
Regularly review and update colour blocking schemes to ensure they align with current trends and brand guidelines.
Use consistent colour palettes throughout the store to create a cohesive look and feel.
Ensure that store fixtures and displays complement the chosen colour blocking scheme.
Train...
Window and focal point displays should be updated to reflect the current season, using relevant colors, themes, and products.
Update window displays with seasonal colors and themes to attract customers' attention.
Create focal point displays featuring key seasonal products to drive sales.
For example, in the fall, use warm tones like orange and brown, and showcase cozy sweaters and scarves.
In the summer, opt for bright co...
I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.
I am a data analyst with a background in statistics and programming, passionate about turning data into actionable insights.
Background in statistics and programming
Experience in data analysis and visualization
Strong problem-solving skills
Ability to communicate complex findings to non-technical stakeholders
I analyze data to identify trends, patterns, and insights to support decision-making.
Analyze large datasets to extract valuable insights
Create visualizations to communicate findings
Collaborate with stakeholders to understand business needs
Use statistical tools and techniques to interpret data
Present findings and recommendations to management
Beauty is subjective and can be found in various forms, such as nature, art, and human relationships.
Beauty is subjective and can vary from person to person.
It can be found in nature, like a breathtaking sunset or a blooming flower.
Artistic creations, such as paintings, sculptures, and music, can also be considered beautiful.
Beauty can also be seen in human relationships, acts of kindness, and expressions of love.
posted on 18 Sep 2024
To troubleshoot OSPF neighbors stuck in Exstart state, check for mismatched parameters, network connectivity issues, and potential network congestion.
Verify OSPF parameters such as area ID, network type, and authentication match on both neighbors
Check for network connectivity issues such as firewall blocking OSPF traffic or physical link problems
Investigate potential network congestion causing packets to be dropped or ...
To troubleshoot a failed BGP session, check the configuration, verify connectivity, analyze logs, and check for any network issues.
Check BGP configuration for any errors or misconfigurations
Verify connectivity between the BGP peers
Analyze BGP logs for any error messages or warnings
Check for any network issues such as routing problems or firewall blocking BGP traffic
Diagnosing a STP loop in a switches network involves checking for redundant links, analyzing STP configurations, and using network monitoring tools.
Check for redundant links in the network that may be causing the loop.
Analyze the STP configurations on the switches to ensure proper settings and priorities.
Use network monitoring tools to identify the source of the loop and isolate the affected switches.
Implement loop pre...
Seeking new challenges and growth opportunities.
Looking for a new challenge to further develop my skills and knowledge.
Interested in exploring new technologies and methodologies.
Seeking opportunities for career advancement and growth.
Desire for a change in work environment or company culture.
Yes, I am comfortable with night shifts as I have prior experience working during those hours.
I have previous experience working night shifts in my previous roles.
I am able to adjust my sleep schedule to accommodate night shifts.
I understand the importance of being alert and focused during night shifts.
I am willing to work night shifts as needed to support the team and operations.
Pooling is a technique used in convolutional neural networks to reduce the spatial dimensions of the input volume.
Pooling helps in reducing the computational complexity of the network by reducing the number of parameters and computations in the network.
Common types of pooling include max pooling and average pooling.
Max pooling selects the maximum value from a group of values in the input, while average pooling calculat...
Xgboost is a scalable and accurate implementation of gradient boosting machines.
Xgboost stands for eXtreme Gradient Boosting.
It is a popular machine learning algorithm known for its speed and performance.
Xgboost is used in various fields such as data science competitions, finance, and healthcare.
It can handle missing data and is resistant to overfitting.
Example: Xgboost has been used to win multiple Kaggle competitions
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
posted on 3 Jul 2024
Java program to count characters in a given string
Use 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 at the end
Program to reverse a string using array of characters
Create an array of characters from the input string
Iterate through the array in reverse order and append each character to a new string
Return the reversed string
XPath code for selected value in Amazon site
Use the 'contains' function to locate the selected value
Identify the unique attributes of the selected value to create a specific XPath
Consider using the 'text()' function to locate text within an element
An interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.
Interfaces in Java are used to achieve abstraction and multiple inheritance.
Interfaces cannot have method bodies, only method signatures.
Classes can implement multiple interfaces, but can only extend one class.
Example: interface Shape { void draw(); }
Example...
POM framework is a design pattern used in automation testing to create an object repository for web elements.
POM stands for Page Object Model
It helps in creating reusable code and reduces code duplication
Each web page is represented as a separate class, with locators and methods to interact with elements
Improves test maintenance and readability
I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.
Kpi
Sale achievement
People management
To improve KPI, focus on setting specific, measurable, achievable, relevant, and time-bound goals, analyzing data regularly, providing training and support to employees, and implementing efficient processes.
Set specific, measurable KPIs for each department or team
Regularly analyze data to identify trends and areas for improvement
Provide training and support to employees to help them meet KPIs
Implement efficient process...
To increase sales compared to last year, focus on improving customer experience, implementing targeted marketing strategies, optimizing inventory management, and training staff effectively.
Analyze sales data from previous year to identify trends and areas for improvement
Implement targeted marketing campaigns to attract new customers and retain existing ones
Optimize inventory management to ensure popular products are al...
posted on 24 Jul 2024
I applied via Approached by Company and was interviewed in Jan 2024. There were 3 interview rounds.
Design a parking lot system including classes, functions, and data structures.
Create a ParkingLot class with attributes like capacity, available spots, and a list of parking spots.
Implement a Vehicle class with attributes like license plate number, size, and type.
Design a ParkingSpot class with attributes like spot number, availability, and size.
Use data structures like arrays or lists to manage parking spots and vehic...
based on 15 reviews
Rating in categories
Assistant Manager
7
salaries
| ₹3.2 L/yr - ₹7 L/yr |
Assistant Manager Finance & Accounts
4
salaries
| ₹5 L/yr - ₹5.8 L/yr |
Senior Executive Finance & Accounts
4
salaries
| ₹4.5 L/yr - ₹8 L/yr |
Senior Civil Engineer
4
salaries
| ₹6 L/yr - ₹6.8 L/yr |
Deputy Manager
3
salaries
| ₹6.3 L/yr - ₹8.4 L/yr |
Ambuja Cements
DLF
TCS
Reliance Industries