logo

Crowdly

Browser

Add to Chrome

Course 19

Looking for Course 19 test answers and solutions? Browse our comprehensive collection of verified answers for Course 19 at bt.nixs.com.

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

Що таке винятки, що перевіряються?

0%
0%
0%
100%
View this question

Чи відкомпілюється наступний шматок коду

try {

// do risky IO things

} catch (IOException ioe1) {

// handle general IOExceptions

} catch (IOException ioe2) {

// handle general IOExceptions

}

100%
0%
View this question

Який буде результат компіляції та запуску наступного фрагмента коду?

public class X {

public static void main(String [] args) {

try {

badMethod();

System.out.print("A");

} catch (RuntimeException ex) {

System.out.print("B");

} catch (Exception ex1) {

System.out.print("C");

} finally {

System.out.print("D");

}

System.out.print("E");

}

public static void badMethod() {

throw new RuntimeException();

}

}

0%
100%
0%
0%
View this question

Який буде результат компіляції та запуску наступного фрагмента коду?

public class Foo {

public static void main(String[] args) {

try {

return;

} finally {

System.out.println( "Finally" );

}

}

}

0%
100%
0%
0%
View this question

Якщо ви у вашому коді викидаєте виняток (

екземпляр

класу java.lang.Exception), то ви повинні вказати це в сигнатурі

0%
100%
View this question

Чи можна використовувати блок try з блоком finally без блоку catch

100%
0%
View this question

Підклас виключення повинен передувати базовому виключенню в твердженнях catch

100%
0%
View this question

Чим відрізняються результати запитів з використанням просто "JOIN" та "INNER JOIN"?

0%
100%
0%
View this question

Яким буде результат запиту з використанням «LEFT JOIN» для 2-х таблиць?

0%
0%
100%
0%
View this question

Який із наведених запитів правильно відобразить список співробітників, яких називають «Ivan»?

0%
0%
100%
0%
View this question

Want instant access to all verified answers on bt.nixs.com?

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

Browser

Add to Chrome