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!

Яку функцію виконує оператор new int [12] в наведеному прикладі:

int month_days [] = new int [12];

View this question

Результат

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

int array [] = new int [4];

for (int i = 0, j = 1; i < 4; i++, j = j + 2) {

array [i] = j;

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

}

View this question

Результат

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

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

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

20%
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

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