logo

Crowdly

Browser

Add to Chrome

Об’єктно-орієнтоване програмування

Looking for Об’єктно-орієнтоване програмування test answers and solutions? Browse our comprehensive collection of verified answers for Об’єктно-орієнтоване програмування at vns.lpnu.ua.

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

Дано:

class Toy {

public void printName() {

System.out.println("Toy");

}

}

class Doll extends Toy {

public String printName() {

System.out.println("Doll");

return "Doll";

}

}

public class TestToys {

public static void main(String[] args) {

Toy doll = new Doll();

doll.printName();

}

}

Який результат?

View this question
Розмір масиву можна змінити після його створення.
0%
100%
View this question
При створенні порожнього масиву елементів присвоюються значення залежно від типу даних масиву.

Зіставте наступні типи з їх значеннями по замовчуванню

View this question
Масив – це змінна, у яку можна покласти не одне, а відразу кілька значень.
100%
0%
View this question
Усі елементи масиву мають однаковий тип.
100%
0%
View this question
Що має бути на місці пропуску:

int[] myArray = _____ int[3];

View this question

Яким буде результат виконання коду?

public class Test{

public static void main(String[] args){

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

if(i % 2 == 0)

continue;

System.out.println(i);

}

}

}

View this question

Що буде результатом виконання коду?

public class Test{

public static void main(String[] args){

int i = 0;

for(; i < 10; i++){

break;

}

System.out.println(i);

}

}

View this question

Яким буде результат виконання коду?

public class Test{

public static void main(String[] args){

int i = 1;

for(i = 0 ; i < 10; i++){

}

System.out.println(i);

}

}

View this question

Що буде  результатом виконання коду?

public class Test{

public static void main(String[] args){

int a = 0, b = 5;

while(b--){

System.out.println(a++);

}

}

}

View this question

Want instant access to all verified answers on vns.lpnu.ua?

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

Browser

Add to Chrome