what is meaning by design document? who can repared for
this?
Answers were Sorted based on User's Feedback
Answer / aru
Design(DLD) document is prepared by the developer.This
document contains the logic that is going to be implemented
in pure English.Some time code snippets are added to make it
more understandable.Purpose of this document is to document
the thought process and reduce dependency during coding.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / dev
designe document is prepared by senior programmer or TL and
they only can chnge the document.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / babu
Design document is prepared by the programmer, which is
prepared when we are doing the coding.
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / srinivasa yadav
DESIGN DOCUMENT IS PREPARED BY SOME LEADS.
| Is This Answer Correct ? | 0 Yes | 3 No |
What is the maximum size of a 01 level item in COBOL I? in COBOL II?
what is redefines? where it can be effectively use for the purpose of memory utilization? give an example?
how to pass 100 to s9(4) how r they inserted ?
What is an explicit scope terminator?
There is a variable with value 19446. Requirement is to convert it to 194.46. I tried it by doing divide by 100 and my receiving field data type is 9(03)v99. But the output is 194. I am not getting the decimal value. Could anyone pls let me know how to get this done?
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
I have a files containing both duplicate and non-duplicate records.The file is already sorted by a key.I want to determine those records that are duplicate and records that are non-duplicate.If duplicate the record is move to a duplicate file and if non-duplicate that will be move to valid file.thank you
For rewrite, why is it mandatory that file needs to be opened?
) How do u handle errors in BMS macro
What are the different data types available in COBOL?
hie everyone.i just completed my b.tech in electronics and joined mainframes course.am i doing right course for my better future?please help me with your suggestions.ill be very thankful to you guys.
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.