Answer the following statements true (T) or false (F)

1. The sequential logic structure allows decisions to be made.
2. The problem analysis chart, the IPO chart, the structure chart, the algorithms, and the flowchart are all tools to be used in the development of a solution to a problem.
3. The algorithm and the flowchart are the same thing.
4. The equals sign in an assignment statement really means equals to.
5. The word end and exit can be used interchangeably according to the desire of the developer.


1. FALSE
2. TRUE
3. FALSE
4. FALSE
5. FALSE

Computer Science & Information Technology

You might also like to view...

What protocol breaks a message into numbered segments so that it can be transmitted?

A. UDP B. IP C. ICMP D. NAT

Computer Science & Information Technology

________ view displays all of the slides in a presentation as thumbnails

A) Normal B) Slide Master C) Slide Sorter D) Slide Show

Computer Science & Information Technology

What type of tools are easier to integrate with other tools from multiple sources?

A. IDEs B. Open source tools C. Proprietary tools D. Security tools

Computer Science & Information Technology

Consider the following program segment.  ifstream inFile; //Line 1int x, y; //Line 2... //Line 3  inFile >> x >> y; //Line 4  Which of the following statements at Line 3 can be used to open the file progdata.dat and input data from this file into x and y at Line 4?

A. inFile.open("progdata.dat"); B. inFile(open,"progdata.dat"); C. open.inFile("progdata.dat"); D. open(inFile,"progdata.dat");

Computer Science & Information Technology