221. The objective of using structured English is to
describe computational procedures reasonably precisely which can be understood by any user
expand a DFD so that a user can understand it
develop algorithms corresponding to processes in a DFD
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
non-procedural specification
procedural specification
purely descriptive specification
very imprecise specification
Correct answer: (B) procedural specification
223. An extended entry decision table
has no limited entry equivalent
cannot be replaced by a table with only Y, or - entries
may have Yes, No answers to conditions
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
must be in sequential order
must be in the order in which they are to be tested
may be in any order
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
process inventory records
find the sum of outstanding billed amounts
check if outstanding amount >= Rs. 5000
check if stock is low
i and ii
i and iii
iii and iv
ii and iii
Correct answer: (D) ii and iii
226. A decision table is
a truth table
a table which facilitates taking decisions
a table listing conditions and actions to be taken based on the testing of conditions
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"
student passes the examination
student fails the examination
student gets 50 marks or more in mathematics
student mathematics marks >= 50 and student English marks >= 40
i and ii
i and iii
ii and iii
iii and iv
Correct answer: (A) i and ii
228. In a limited entry decision table a-entry against a condition signifies that
the outcome of testing the condition is irrelevant
it is an important condition
the condition should be tested
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
list X or - corresponding to actions to be executed
list the conditions to be tested
have Y or N or - entries
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
end if in second if is not needed
nesting of ifs is not correct
no action is specified when balance in account >=minimum balance
the value of minimum balance is not specified
Correct answer: (C) no action is specified when balance in account >=minimum balance