What is normalisation?
Answers were Sorted based on User's Feedback
Answer / papari
normalisation means to remove data redundancy from a table.
| Is This Answer Correct ? | 8 Yes | 0 No |
what are difference organizations in cobol and access mode in cobol? can you expalin what organization means while declaring for ksds,esds,rrds?
without performing any operations on a file how can i know whether it contains data or not
Suppose a program has the following code. What will be the output? MAIN-PARA. DISPLAY 'MAIN-PARA' PERFORM SECTION-A. STOP RUN. SECTION-A. PARA-A1. DISPLAY 'SECTION A PARA A1'. PARA-A2. DISPLAY 'SECTION A PARA A2'.
How do you fetch current date in normal cobol pgm and in cobol-db2 pgm?
How do we get current date from system with century?
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
what will happen if pass values more than 100 using PARM parameter?
What divisions, sections and paragraphs are mandatory for a COBOL program?
What is the difference between static call & Dynamic call?
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
What guidelines should be followed to write a structured Cobol program?
)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?