How to implement user redirection from mobile devices to a mobile subdomain (like VKontakte)?
C#
What are delegates?
What motivates you to look for a new position in this field?
What is asynchrony and what is its essence? How is it achieved?
Tell us about an interesting task you recently worked on (description of the warehouse robot management service architecture)
Task 1 Implement (without using LINQ) a method that returns an array without duplicates while preserving the order of elements. int[] Distinct(int[] src) //[1,2,5,3,3,2] → [1,2,5,3] -------------- insert solution below --------------
How many IPv4 addresses are there in total or how can this be calculated?
Is it good to return void in asynchronous methods? Pitfalls of async void?.
How can this SQL query be optimized to the maximum?
What is the complexity of QuickSort?
In which direction do you want to grow professionally?
Can you tell about the most exciting or challenging task you had to solve in your practice?
What aspects or situations in the company do you find particularly attractive and valuable?
How do geolocation services determine location based on IP address?
What will be printed to the console and why? (code with Task.WhenAll, Thread.Sleep(1000), and Task.Delay(1000))
How many requests to the network service will be made when using FilterLast with take(4) from a collection of 10 elements? And FilterLast2?
Why are transactions needed in a database?
What is a Leaky Abstraction?
What does the keyword yield mean? Why is it used?
Why did you add List to the solution if you could just use HashSet and call ToList?