logo

Crowdly

Browser

Add to Chrome

Програмування мовою Java

Looking for Програмування мовою Java test answers and solutions? Browse our comprehensive collection of verified answers for Програмування мовою Java at moodle.chnu.edu.ua.

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

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

class A {

...

}

class B extends A {

...

}

class C extends B {

...

}

public class MyClass {

public static void main (String args []) {

A x1 = new A ();

B x2 = new B ();

C x3 = new C ();

x1 = x3;

x2 = x3;

System.out.println (x1.getClass ());

}

}

0%
0%
0%
0%
0%
View this question
У програмі наведено таке опис:

1 class A {

2 private int a;

3}

4 class B extends A {

5 int b;

6 B () {

7 super ();

8 b = 0;

9 }

10 }

Виконання програми завершилося помилкою. Які зміни можуть бути внесені для виключення помилки?

View this question
Вкажіть правильні варіанти оголошення перевантажених методів.

(Java)

0%
0%
0%
0%
View this question
Який метод згенерує помилку ArrayStoreException при передачі в нього масиву v ?

public class Vehicle {

public static void main (String [] args) {

Vehicle [] v = new Car [5];

...

}

public void setVehicles (Vehicle c []) {

c [0] = new Vehicle ();

}

public void setVehicles2 (Vehicle c []) {

if (c [0] instanceof Vehicle) {

c [0] = new Vehicle ();

}

}

public void setVehicles3 (Car c []) {

if (c [0] instanceof Car) {

c [0] = new Car ();

}

}

}

class Car extends Vehicle { }

(Java)

View this question
Які твердження щодо класів WindowListener і WindowEvent вірні?

(Java)

0%
0%
0%
0%
View this question
Які твердження щодо колекцій вірні?

(Java)

0%
0%
0%
View this question
Яка з перерахованих інструкцій забезпечить видимість пакету myPack.mathв подальшому коді?
View this question
Які класи, необхідні для підтримки багатопоточності, визначені в пакеті java.lang ?

(Java)

View this question
Які твердження щодо заголовка класу вірні?

(Java)

0%
0%
0%
0%
0%
View this question
Вкажіть, які з перерахованих конструкцій містять в собі виклик методу деякого класу?
View this question

Want instant access to all verified answers on moodle.chnu.edu.ua?

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

Browser

Add to Chrome