System Analysis and Design

221. The objective of using structured English is to

  1. describe computational procedures reasonably precisely which can be understood by any user
  2. expand a DFD so that a user can understand it
  3. develop algorithms corresponding to processes in a DFD
  4. ease writing programs for DFDs
Correct answer: (A)
describe computational procedures reasonably precisely which can be understood by any user

222. Structured English description of data processing is a

  1. non-procedural specification
  2. procedural specification
  3. purely descriptive specification
  4. very imprecise specification
Correct answer: (B)
procedural specification

223. An extended entry decision table

  1. has no limited entry equivalent
  2. cannot be replaced by a table with only Y, or - entries
  3. may have Yes, No answers to conditions
  4. can always be converted to an equivalent limited entry decision table
Correct answer: (D)
can always be converted to an equivalent limited entry decision table

224. The actions in the action stub of a limited entry decision table

  1. must be in sequential order
  2. must be in the order in which they are to be tested
  3. may be in any order
  4. must be in the order in which they are to be executed
Correct answer: (D)
must be in the order in which they are to be executed

225. Select from the following list which are appropriate to use in structured English description of a process

  1. process inventory records
  2. find the sum of outstanding billed amounts
  3. check if outstanding amount >= Rs. 5000
  4. check if stock is low
  1. i and ii
  2. i and iii
  3. iii and iv
  4. ii and iii
Correct answer: (D)
ii and iii

226. A decision table is

  1. a truth table
  2. a table which facilitates taking decisions
  3. a table listing conditions and actions to be taken based on the testing of conditions
  4. a table in a Decision Support System
Correct answer: (C)
a table listing conditions and actions to be taken based on the testing of conditions

227. In the following word statement the actions are "if a student gets 50 marks or more in mathematics and 40 marks or more in English he passes the examination, otherwise he fails"

  1. student passes the examination
  2. student fails the examination
  3. student gets 50 marks or more in mathematics
  4. student mathematics marks >= 50 and student English marks >= 40
  1. i and ii
  2. i and iii
  3. ii and iii
  4. iii and iv
Correct answer: (A)
i and ii

228. In a limited entry decision table a-entry against a condition signifies that

  1. the outcome of testing the condition is irrelevant
  2. it is an important condition
  3. the condition should be tested
  4. the condition is a Boolean condition
Correct answer: (A)
the outcome of testing the condition is irrelevant

229. In a limited entry decision table the action entries

  1. list X or - corresponding to actions to be executed
  2. list the conditions to be tested
  3. have Y or N or - entries
  4. list the actions to be taken
Correct answer: (A)
list X or - corresponding to actions to be executed

230. The following structured Englishprocedure is incorrect because
if balance in account <=0
then
{issue exception note to dept.
mark "stop future issues" in
departments record}
else
if balance in account <minimum balance
then
{ issue item to dept.
issue warning to dept.}
end if
end if

  1. end if in second if is not needed
  2. nesting of ifs is not correct
  3. no action is specified when balance in account >=minimum balance
  4. the value of minimum balance is not specified
Correct answer: (C)
no action is specified when balance in account >=minimum balance
Page 23 of 61