In a structure chart, a(n) _____ line, with a diamond on one end, indicates that a control module determines which subordinate modules will be invoked.
A. method
B. condition
C. class
D. attribute
Answer: B
Computer Science & Information Technology
You might also like to view...
The nonprinting gray lines that indicate the separation between individual labels are ________
A) gridlines B) selection indicators C) borders D) column breaks
Computer Science & Information Technology
Analyze the following code:
``` public class Test { public static void main(String[] args) throws MyException { System.out.println("Welcome to Java"); } } class MyException extends Error { } ``` a. You should not declare a class that extends Error, because Error raises a fatal error that terminates the program. b. You cannot declare an exception in the main method. c. You declared an exception in the main method, but you did not throw it. d. The program has a compile error.
Computer Science & Information Technology