logo

Crowdly

Browser

Add to Chrome

Основи програмування

Looking for Основи програмування test answers and solutions? Browse our comprehensive collection of verified answers for Основи програмування at virt.ldubgd.edu.ua.

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

Результат

компіляції частини програмного коду:

double m[][] = {

{ 1, 2,

3 },

{ 4, 5,

6 },

{ 7, 8,

9 },

};

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

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

System.out.print(m[i][j] + "  ");

System.out.println();

}

}

View this question

Вкажіть

вірну форму оголошення двовимірного масиву:

View this question

Оператори багаторазової реалізації однієї інструкції до моменту

виконання умови – це?

View this question

Коли виконання коду програми виходить за межі циклу?

0%
0%
0%
View this question

Результат компіляції

частини коду:

int i = 0;

for ( ; i < 10; ){

System.out.print(i+" ");

i = i + 5;

}

View this question

Тривалість виконання тіла циклу do-while?

View this question

Результат компіляції програми:

int n = 10;

do {

System.out.print(n+” ”);

n--;

}

while (n>10);

View this question

Результат компіляції

частини коду:

int a, b;

for (a = 0, b = 5; a<b; a++, b--) {

System.out.print(a+" ");

System.out.print(b+" ");      

}

View this question

Скільки разів буде

виконано цикл за заданою умовою:

int i, j;

i = 6;

j = 0;

do {--i;

++j;

System.out.print("*");

}

while (i > j);

View this question

Цикл, у якому тіло циклу виконується перед перевіркою

умови має назву:

View this question

Want instant access to all verified answers on virt.ldubgd.edu.ua?

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

Browser

Add to Chrome