Question:
Seřaďte následující řádky tak, jak by měly za sebou následovat v programu (mezi uvedenými řádky mohou být další řádky programu) (očíslovat od 1 do 5) ● } catch(Exception rte) { ● try { ● } catch(RuntimeException rte) { ● } finally { ● } catch(Throwable rte) {
Author: Karel MarčíkAnswer:
1) try { 2) } catch(RuntimeException rte) { 3) } catch(Exception rte) { 4) } catch(Throwable rte) { 5) } finally {
0 / 5 (0 ratings)
1 answer(s) in total