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!

Яка кодування використовується класом OutputStreamWriter за замовчуванням?

(Java)

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

int a = 35, i = 0;

while (i <3) {

try {

System.out.print (42 / a);

}

catch (ArithmeticException e) {

System.out.print (42/2);

}

finally {

System.out.print (42/1);

}

a - = 7;

i ++;

}

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

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.equals (x2));

}

}

0%
0%
0%
0%
0%
View this question
Вкажіть коректний варіант коду

(Java)

View this question
Підкласами якого вбудованого класу є всі типи винятків в Java?
View this question
Які твердження щодо обробки користувальницьких подій в AWT вірні?

(Java)

View this question
Ви створили клас Animal в пакеті ua.animal . Де буде зберігатися бінарний код класу в файлової системі?

(Java)

View this question
Які з перерахованих тверджень невірні?
View this question
Які твердження щодо сериализации в Java вірні?

(Java)

0%
0%
0%
View this question
Що буде виведено на екран в результаті роботи наступної програми?

class Square {

int s (int a, int b) {return a * b; }

void s (double a, double b) {return a * b; }

}

public class MyClass {

public static void main (String args []) {

Square x = new Square ();

int a = 1;

double b = 2;

System.out.print (xs (a, b + a) + xs (a ++, a));

...

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