What are the memory volume limitations of the stack in software systems?
C#
What is the role of using meaningful data types in programming?
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
Where is the asynchronous method DeleteFileAsync executed?
What is the difference between a destructor and a Finalize method in resource management of an object?
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.
Explain the principle of greedy data loading in systems and why it is used.
How to implement parallel execution of multiple tasks in a program?
What are the differences between using ORM and direct SQL queries when working with a database?
What is the purpose of attributes in programming or system modeling?
Can you name popular libraries or tools for working with object-relational mapping?
Can you explain the concept of request processing using a pipeline?
What methods and approaches do you follow in team work?
Can you show an example of how to use a declared class with the 'using' operator in code?
Have you created custom exception classes in your projects?
Do you work with message broker systems?
Is the namespace System associated with a single DLL or does it include multiple modules?
What is the difference between reference types and value types in programming?
Have you used inheritance principle when working with Entity Framework in your projects?