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 |
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
Difference between file status codes 02 and 22.... since both are for duplicate key detection.
I want ALL ERROR codes in VSAM
3 Answers American Express, TCS,
select TURE Statement(s) aboUt eject statemenet in cobol? a)The eject statememnt must be the only statement on the line b.It causes the program to edit abnormally c. eject statement can be written in either area A or area B d. specifies that the next source statement is to be printed at Top of the next page e.The EJECTstatement has no effect on the compilation of the source program itself
Explain fixed length record in cobol? with suitable example
How to read records in reverse order in flat file? I know we can do it by reading all records into an array.... Then read records in reverse order by using subscript or index but can any body give me the exact code.
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
how will you define vsam file in select clause?
record length in spool?
What is the difference between CALL BY VALUE and CALL BY CONTENT?
is it possible to declare index in cobol program? if it is not why its tell me pls
I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..