C# ASP.NET Web Developer
Questions:
You need to download a 10GB file size to the site through a browser. How would you realize it?
You need to download a 10GB file from the site. Access only for authorized customers. The client can use Download Manager with a multi -flow download. How would you implement control that the file is downloaded by the client entirely?
The site requires authorization of users, there are only a few pages available without authorization. How would you promote such a site to raise it in the results of the Google search?
When paying for a service for customers from the United States, it is required to calculate the tax amount depending on the Billing Address. How will you implement this? Experience, ideas?
It is necessary to generate Preview video for display in the browser. What is the minimum list of file formats? How and how to convert from MP4?
How would you implement logging? .NET, own code with entry into files, third -party libraries with a recording in the database?
On the main page of the site (before authorization) there is a choice of language. What is preferable - Combobox or a pop -up menu with links? Why?
Have you had to use SQL procedures? If so, for what?
Howld You Make Sure Related Data Isistent Between Multiple Tables?
What is a covered query?
Howld You Make Sure The Consistency and Accuracy in Case Metadata in a Database and Some in Regular Files. Consider A Simple Case When A File Format and Path to a File Are Stored in A Database, and the File Itself is in a File System. Howld You Make Sure thes No Orphans Either in the Database Nor in the File System?
The server should launch a console utility, receive and steam the conclusion to Stdout and Stderr. How to do it? What to do if the utility has Crash? What to do if the server is Craesh, and the utility still works?
What is RESULT? Object S1 = "ABC"; String S2 = "ABC"; Bool Result = S1.Equals (S2);
Public Enum Enum1 {Black, Red, Green, Blue, Yellow, White,}
[Flags] Public enum enum2 {Black = 1, Red = 2, Green = 4, Blue = 8, Yellow = 16, White = 32,}
Enum2 mux (enum1 [] e) {// Imagine the function}