System Analysis and Design
201. A decision table
- has a structured English equivalent representation
- cannot be represented using structured English
- does not have an equivalent algorithmic representation
- cannot be used to represent processes in a DFD
Correct answer: (A)
has a structured English equivalent representation
202. Select statements from the following list which may be used in structured English
- if marks are too low fail student
- if marks >=60 enter first class
- if average height select candidate
- if weight < 40 kg. reject candidate
- i and ii
- ii and iii
- iii and iv
- ii and iv
Correct answer: (D)
ii and iv
203. Structured English description of processes
- should be understandable to a user of a computer based system
- should be understandable to a programmer
- can be descriptive in nature
- should be translatable by a compiler
- i and iii
- ii and iv
- i, ii and iv
- i and ii
Correct answer: (D)
i and ii
204. Structured English statements must be
- short and clear
- specified quantitatively
- specified qualitatively
- detailed and descriptive
Correct answer: (B)
specified quantitatively
205. An extended entry decision table has
- only Y, N or - entries
- entries which extend the condition
- questions asked extended into the condition entry part of the table
- only numerical entries
Correct answer: (C)
questions asked extended into the condition entry part of the table
206. In a limited entry decision table the condition entries may be
- Y or N only
- Y, N or -
- A binary digit
- Any integer
Correct answer: (B)
Y, N or -
207. A X against an action in an action row signifies that the
- action is not to be taken
- action is to be taken
- action is important
- action is not important
Correct answer: (B)
action is to be taken
208. In a limited entry decision table the condition stub
- lists X or - corresponding to actions to be executed
- lists the conditions to be tested
- has Y or N or - entries
- lists the actions to be taken
Correct answer: (B)
lists the conditions to be tested
209. The conditions in the condition 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: (C)
may be in any order
210. The following while structure is wrong because
balance =500
while balance <=1000 do
Write (amount due - balance)
Read next record
end while
- read must appear before write
- this loop will never terminate
- no read allowed in a loop the contents of next record is not known
Correct answer: (B)
this loop will never terminate