A colleague's task has come to your Code Review What problems do you see in the code?
C#
What are the main differences between abstract and concrete classes in object-oriented programming?
What is the role of the AddAuthentication method in the user authentication process?
Who was responsible for the deployment process within the team?.
Explain what stored procedures are in database management systems and how they are used.
What training programs or courses have you completed to develop your skills?
Tell about a specific situation from your practice that was particularly significant or instructive for you.
Could you explain the principle of inversion of control and its main purpose?
Can you show an example of using LINQ to perform queries on a collection?
Can you explain what the .NET platform is and what capabilities it offers for application development?
How do the concepts of asynchronous programming and multithreading differ in software development?
What thread synchronization tools have you used in your projects and how did you implement them?
What database have you worked with and how did you interact with it?
Can you explain the main principles of REST architecture and how it is used in web development?
How do C and C++ programming languages differ in architecture and capabilities?
What are the memory volume limitations of the stack in software systems?
Can you explain what the base class Object in the .NET system is?
In array A, there are prices for N items. There are K coupons that reduce the item's price by X. If t coupons are applied to an item with price a, its final cost will be max(a - t*X, 0). Return the minimum amount of money needed to buy all items. A = 8, 3, 10, 5, 13 K = 4 X = 7 result=12 --- Given an array a of n positive integers, are there three distinct indices i, j, k such that the sum a[i]+a[j]+a[k] ends with the digit m? For example, for m = 3 solve([20, 22, 19, 84]) => true // 20 + 84 + 19 = 123 solve([1,2,3]) => false
Can you explain what a task scheduler in an operating system is?
Explain what the 'protected' access modifier means in a programming language and how it is used in classes.