In a flow chart, a(n) ________ shape indicates where a process is performed in the chart

A) oval B) circle C) diamond D) rectangle

D

Computer Science & Information Technology

You might also like to view...

What is an advantage to using on site climate-controlled, fireproof, waterproof, and even tornado-proof safes?

A) Guarantees the chain of custody and minimizes the points of access to the data B) Lessens the risk of the tapes being damaged in a disaster C) Allows for rapid access by the organization when necessary D) All of the above

Computer Science & Information Technology

For the String line1 to have 4 tokens, delimArg should be:

``` String line1 = new String("c = 1 + 2 + 3") ; StringTokenizer tok = new StringTokenizer(line1, delimArg); ``` a. String delimArg = "+="; b. String delimArg = "123" c. String delimArg = "c+"; d. String delimArg = " ";

Computer Science & Information Technology