You are on page 1of 6

System Analysis & Design (PL/SQ Prog) (OER)

1. Dashboard
2. My courses
3. MIS6231
4. Week 8: Structured systems analysis and design
5. Assignment 008

Question 1
Correct
Mark 1.00 out of 1.00

Flag question

Question text
TRUE or FALSE. Use Structured English when there are large number of conditions to check
and logic is complex.
false
Answer: 
Check

Question 2
Correct

Mark 1.00 out of 1.00

Flag question

Question text
Logical operators are used in constructing a Structured English, which of the following is not
a logical operator?

Select one:

a.

OR
b.

None of the choices

c.

AND

d.

IF

Question 3
Correct

Mark 0.67 out of 1.00

Flag question

Question text
Which of the following does NOT describe Structured English?

Select one:

a.

Structured English should be understandable to the user

b.

Structured English shows decision structure

c.

Structured English should be written or follow the programming syntax rules and
convention

Question 4
Correct

Mark 1.00 out of 1.00


Flag question

Question text
Which of the following is NOT an advantage of using decision table?

Select one:

a.

Simple representation of complex decision rules

b.

Easy detection of program error

Question 5
Correct

Mark 1.00 out of 1.00

Flag question

Question text
Which of the following is BEST in sequencing conditions by priority?

Select one:

a.

Decision Table

b.

Decision Trees

Question 6
Correct

Mark 1.00 out of 1.00


Flag question

Question text
The objective of using structured English is to

Select one:

a.

ease writing programs for DFDs

b.

develop algorithms corresponding to processes in a DFD

c.

describe computational procedures reasonably precisely which can be understood by any


user

Question 7
Correct

Mark 1.00 out of 1.00

Flag question

Question text
TRUE or FALSE. The for keyword is a loop structure.
true
Answer: 

Check

Question 8
Correct

Mark 1.00 out of 1.00


Flag question

Question text
TRUE or FALSE. For every condition, there should only be 2 actions.
false
Answer: 

Check

Question 9
Correct

Mark 1.00 out of 1.00

Flag question

Question text
The Student Grading Information System needs to compute for the average grade on 10
quizzes of a student. What is the correct Structured English?
Select one:

a.

for quiz >= 1 to quiz <= 10 do


                  {
                                    Total Score = Total Score + Score
Average = Total Score / 10
 
                  }
end for

b.

for quiz = 1 to quiz = 10 do


                  {
                                    Total Score = Total Score + Score
                  }
end for
Average = Total Score / 10

Question 10
Correct

Mark 1.00 out of 1.00

Flag question

Question text
TRUE or FALSE. A decision table is said to be complete if it has at least 2 possible distinct
elementary rules.
false
Answer: 

Check

You might also like