1. Question: ______ table is commonly used to represent the possible values of combinations of conditions.

    A
    truth

    Note: Not available
    1. Report
  2. Question: Change in the value of the control field is called a control ______.

    A
    break

    Note: Not available
    1. Report
  3. Question: N-S stands for ______.

    A
    nassi-shneiderman

    Note: Not available
    1. Report
  4. Question: ______: A way to represent instructions that uses ordinary English; a planning tool for structured programming.

    A
    pseudocode

    Note: Not available
    1. Report
  5. Question: Pseudocode is language-dependent.

    A
    Yes

    B
    False

    Note: Not available
    1. Report
  6. Question: See the following pseudocode for sorting three numbers:

    IF A < B THEN
       move A to TEMP
       move B to A
       move TEMP to B
    ELSE
       (null)
    END IF

    IF A<C THEN
       move A to TEMP
       move C to A
       move TEMP to C
    ELSE
       (null)
    END IF

    IF B<C THEN
       move B to TEMP
       move B to C
       move TEMP to C
    ELSE
       (null)
    END IF

    IF B<C THEN
       move  A to TEMP
       move C to
       move TEMP to B
    ELSE

       (null)

    END IF


    Is the above pseudocode is correct?


    A
    True

    B
    False

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd