Sobes.tech
Junior — Middle

Could you tell me about the scripts you created and used in your previous position?

sobes.tech AI

Answer from AI

In my previous position, I created scripts in C# to automate routine tasks such as data processing, report generation, and integration with external services.

For example, I wrote a script for parsing CSV files and uploading data to a database:

using System.IO;
using System.Data.SqlClient;

string[] lines = File.ReadAllLines("data.csv");
foreach (var line in lines)
{
    var fields = line.Split(',');
    // Processing and inserting into the database
}

I also developed scripts for automated API testing, using HttpClient to send requests and verify responses.

These scripts helped speed up processes and reduce errors in manual work.