Which is output when inputVal is -5? try { inputVal = scnr.nextInt(); if (inputVal < 0) { throw new Except

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

Which is output when inputVal is -5? try { inputVal = scnr.nextInt(); if (inputVal < 0) { throw new Except

Post by answerhappygod »

Which is output when inputVal is -5?
try { inputVal = scnr.nextInt(); if (inputVal < 0) { throw new Exception("Input should bepositive"); } System.out.print("Input squared: " + inputVal *inputVal);}catch (Exception e) { System.out.print(e.getMessage());}
Input squared: 25
Exception
Input should be positive
Input squared: 25Input should be positive
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply