Junior — Middle
Did you need to perform data analysis or generate reports in your previous position?
sobes.tech AI
Answer from AI
In my previous role, I often had to analyze data and generate reports to evaluate effectiveness and support decision-making. For example, using Go, I wrote scripts for log processing and statistics collection, which were then aggregated and visualized.
Here's an example of simple data analysis in Go:
package main
import (
"fmt"
)
func main() {
data := []int{10, 20, 30, 40, 50}
sum := 0
for _, v := range data {
sum += v
}
avg := float64(sum) / float64(len(data))
fmt.Printf("Average value: %.2f\n", avg)
}
This approach helped quickly obtain key metrics and make informed decisions.