In your work in the IT department, you are charged with asking the difficult questions about the feasibility of new systems as they are being developed.
?
Now that you know who installs software, you need to discuss the requirements of the software. Who do you contact?
a. app developer c. web developerb. database designer d. systems analyst

What will be an ideal response?


Answer: D

Computer Science & Information Technology

You might also like to view...

A _________ block executes regardless of whether an exception occurs.

a. final b. finally c. catch d. none of the above

Computer Science & Information Technology

Outline how objects can be organized by using layers.

What will be an ideal response?

Computer Science & Information Technology

?Which of the following steps is the first step in goals-based strategic planning?

A. Define strategies B. ?Set direction C. ?Deploy plan D. ?Analyze situation

Computer Science & Information Technology

What is displayed on the console when running the following program?

``` public class Test { public static void main(String[] args) { try { method(); System.out.println("After the method call"); } catch (RuntimeException ex) { System.out.println("RuntimeException"); } catch (Exception ex) { System.out.println("Exception"); } } static void method() throws Exception { try { String s = "5.6"; Integer.parseInt(s); // Cause a NumberFormatException int i = 0; int y = 2 / i; System.out.println("Welcome to Java"); } catch (NumberFormatException ex) { System.out.println("NumberFormatException"); throw ex; } catch (RuntimeException ex) { System.out.println("RuntimeException"); } } }``` a. The program displays NumberFormatException twice. b. The program displays NumberFormatException followed by After the method call. c. The program displays NumberFormatException followed by RuntimeException. d. The program has a compile error.

Computer Science & Information Technology