logo

Crowdly

Browser

Add to Chrome

Course 8403

Looking for Course 8403 test answers and solutions? Browse our comprehensive collection of verified answers for Course 8403 at student.khnuvs.org.ua.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

int i = 0;

for (; ;)  { i = i * i; }

Чому дорівнює  i після завершення циклу?

0%
100%
0%
0%
0%
View this question

0%
0%
100%
0%
0%
View this question

Компонент ComboBox призначений для?

0%
100%
0%
0%
0%
View this question

Компонент DataGridView призначений для …?

0%
0%
100%
0%
0%
View this question
Этап рішення задачи на ЕОМ включає:
0%
100%
0%
0%
0%
View this question

Скільки існує способів представлення алгоритмів?

0%
0%
0%
100%
0%
View this question

int[] a = new int[] { -3, 2, 1, -4, 0 };

int  max = a[0];

            for ( int i=0; i < 5; i++)

            {   if (a[i] > max)

                { max = a[i]; int imax=i;}

             }

Чому дорівнює  imax по завершенні циклу?

0%
0%
0%
100%
0%
View this question

int[,] m = {{ -30, 8, 1},

                  { -14, 0, 10} };

            int min = 100;

            for (int  i = 0; i < 2; i++)

            {  for (int  j = 0; j < 3; j++)

                      if (m[i,j] < min)                   

                        { min = m[i,j]; int imin=i; }

            }

Чому дорівнює  imin по завершенні циклу?

0%
100%
0%
0%
0%
View this question

В ітераційному циклі кількість повторів -

0%
0%
0%
0%
100%
View this question

int[,] m = {{ -30, 8, 1},

                  { -14, 0, 10} };

            for (int  i = 0; i < 2; i++)

            {  int min = 100;

               for (int  j = 0; j < 3; j++)

                      if (m[i,j] < min)                    

                        { min = m[i,j]; int imin=i; }

            }

Чому дорівнює  imin по завершенні циклу?

0%
0%
0%
100%
0%
View this question

Want instant access to all verified answers on student.khnuvs.org.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome