A structure chart is also called a(n)

a) system flowchart.
b) module chart.
c) system diagram.
d) hierarchy chart.

d) hierarchy chart.

Computer Science & Information Technology

You might also like to view...

Which of the following would BEST protect equipment from a brown out?

A. HVAC system B. Surge suppressor C. UPS D. Power strip

Computer Science & Information Technology

What is the output of the following code?

``` public class Test { public static void main(String[] args) { String s1 = new String("Welcome to Java!"); String s2 = new String("Welcome to Java!"); if (s1.equals(s2)) System.out.println("s1 and s2 have the same contents"); else System.out.println("s1 and s2 have different contents"); } }``` a. s1 and s2 have the same contents b. s1 and s2 have different contents

Computer Science & Information Technology