Sobes.tech

How can this SQL query be optimized to the maximum?

Middle
200

// slice for all sensors, only the latest value by time // collection of anonymous objects, string double var result = list.GroupBy(x => x.Name) .Select(x => new { Name = x.Key, Value = x.OrderByDescending(g => g.Date).First().Value });

200

What is the computational complexity of this query? Can it be sorted in a single pass?

Middle
200

What is IDisposable used for?

Middle+
199

What is the role of query execution plans in SQL and why are they needed?

Junior — Middle
199

How do you use the Singleton pattern in plugin architecture? How to organize the relationship between plugins?

199

Can you compare RabbitMQ and Kafka? For what tasks would you use each?

199

What are the advantages of NoSQL databases over relational ones? What is the CAP theorem?

199

Tell me about Redis — what are its features?

Senior
199

Tell about one of the recent interesting or complex tasks.

199

Does async/await always work in a separate thread? Where do threads come from?

198

What is the difference in memory usage between a class and a struct?

Junior — Middle
198

Is it possible to determine externally whether a method is implemented via yield or via List?

Middle
198
/182