List three of the five conventions that should be followed when using structured English.

What will be an ideal response?


1. Express all logic in terms of one of these four types: sequential structures, decision structures, case structures, or iterations.
2. Use and capitalize accepted keywords such as IF, THEN, ELSE, DO, DO WHILE, DO UNTIL, and PERFORM.
3. Indent blocks of statements to show their hierarchy (nesting) clearly.
4. When words or phrases have been defined in a data dictionary, underline those words or phrases to signify that they have a specialized, reserved meaning.
5. Be careful when using "and" and "or," and avoid confusion when distinguishing between "greater than" and "greater than or equal to" and like relationships.

Computer Science & Information Technology

You might also like to view...

Given the resulting stack X below, what would be the result of each of the following?

``` X.push(new Integer(4)); X.push(new Integer(3)); Integer Y = X.pop(); X.push(new Integer(7)); X.push(new Integer(2)); X.push(new Integer(5)); X.push(new Integer(9)); Integer Y = X.pop(); X.push(new Integer(3)); X.push(new Integer(9)); a) Y = X.peek(); b) Y = X.pop(); Z = X.peek(); ```

Computer Science & Information Technology

________ is the term for specifying the appearance of cells and overall layout of a worksheet

Fill in the blank(s) with correct word

Computer Science & Information Technology

SSL/TLS provides security ________.

between the sender and his or her e-mail server all the way between the sender and the receiver Both between the sender and his or her e-mail server and all the way between the sender and the receiver Neither between the sender and his or her e-mail server nor all the way between the sender and the receiver

Computer Science & Information Technology

Navigator, a Javascript object, obtains information about the current web browser.?

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

Computer Science & Information Technology