Leadership Interview Questions
Q1. How do you handle conflicts between product and engineering priorities? First, I recognize that conflict between product and engineering is not a problem—it’s a sign that both sides care…
A Learning and Sharing Platform for Devs & Managers
Q1. How do you handle conflicts between product and engineering priorities? First, I recognize that conflict between product and engineering is not a problem—it’s a sign that both sides care…
Q1. What is difference between IQueryable and IEnumerable? 1. IQueryable has deferred execution, while IEnumerable has immediate execution. With IQueryable, the query is not executed until the results are actually…
Q1 . What is the difference between Action and Func? Action and Func are built in delegates in .Net Library that can be used instead of creating new custom delegate…
What is CQRS and when would you use it? Answer: Command Query Responsibility Segregation separates read operations (queries) from write operations (commands) with different models and often different data stores.…
Project Title: Online Skill Assessment Platform Requirement/Objective Build a online Skill Assessment platform where Admins can create tests and Candidates can take them. Functional Requirements 👨💼 Admin Functionalities: 🧑🎓 Candidate…
Summary What was not working: Skimming through interview questions. Just updating my profile on job sites and applying from there. Things that worked: Learnt daily. Created sample C# codes to…
This role often sparks numerous inquiries and attracts significant interest from job seekers and professionals alike. These inquiries range from transitioning into this role, transitioning out of it, and exploring…
As a Manager, it is crucial to be able identify risks in your project as early as possible to be able to highlight the risk and mitigate the risk timely…
With the ever changing computing landscape businesses are increasingly leveraging cloud platforms to host and scale their applications. Developing applications and hosting applications now require us to understand the cloud…
Singleton Pattern is type of Creational Design Pattern. Singleton pattern ensures a class has only one instance and provides a global point of access to it. Steps to create Singleton…