Metrics: Why Dev Metrics (Engineering Metrics) matter for Managers.
Metrics as per the dictionary is a set of numbers that give information about a particular process or activity. When we drive a car, the key metrics we are interested…
A Learning and Sharing Platform for Devs & Managers
Metrics as per the dictionary is a set of numbers that give information about a particular process or activity. When we drive a car, the key metrics we are interested…
As a Manager, it is important that we continually assess the performance of the employees, recognize who need nurturing and training to become top performers and make other informed decisions…
Expedite–to speed up or accelerate the progress of something, typically a task. e.g. usage 1.We need to expedite the approval process for the new project proposal to meet the client’s…
Juggernaut I was literally surprised when I came to know the origin of the word Juggernaut which is used to refer to a something that is very powerful – it…
Delegates can be tricky to understand for many new developers even after going through the books and posts, but I am sure this post is going to help you understand…
How do you effectively discuss your accomplishments when it counts, such as during interviews or performance appraisals? The STAR technique is a popular method particularly useful during interviews or performance…
Q1. What is IQueryable and how is it different from IEnumerable? Execution: IQueryable has deferred execution, while IEnumerable has immediate execution. With IQueryable, the query is not executed until the…
Some other questions related to IQuerable and IEnumerable are: Can you explain the difference between SingleOrDefault() and FirstOrDefault() when used with IQueryable? Data Return- FirstOrDefault() returns the first element that…