The technique used by programmers to break down an algorithm into modules is known as __________.

Fill in the blank(s) with the appropriate word(s).


top-down design

Computer Science & Information Technology

You might also like to view...

We wish to write the following code segment using the ternary operator: if ( a == b ) c = 5; else c = 0; The resulting line of code would look like this:

A. c = ( a == b ) : 5 ? 0; B. c = ( a == b )? 5 : 0; C. c = ( a == b )? 0 : 5; D. ( a == b )? c = 5 : 0;

Computer Science & Information Technology

The ________ action allows the user to bypass all the prompts that accompany various actions in a database, such as running an update query and importing data into a table

A) SetWarnings B) AutoExec C) GoToControl D) SelectObject

Computer Science & Information Technology

In an Excel chart, a ________ is made up of related data points

A) data marker B) pie slice C) column D) data series

Computer Science & Information Technology

What statement is used to cause a value to be sent back to the calling method?

A. break B. result C. return D. continue

Computer Science & Information Technology