✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено в консоль після запуску на виконання вказаної нижче програми (Flutter)?import 'package:flutter/material.dart'; const List<String> grups = <String>["KT-4", "ІСТ-4", "І-4", "КТ-3"];void main() { runApp(MaterialApp( home: Scaffold( body: ListView.builder( padding: const EdgeInsets.all(8), itemCount: grups.length, itemBuilder: (BuildContext context, int index) { print(grups[index]); } ), appBar: AppBar(title: Text("Модульний контроль")),) ));}