Answered Questions

  • Redefine

    What is redefine in COBOL?

    Dhans

    • Sep 2nd, 2019

    The REDEFINES clause is used to store more than one data items in the same storage area. Syntax: level-number Data-name1 REDEFINES Data-name-2 data-name-1 is the redefining item or the REDEFINES su...

    gauravaram

    • Dec 6th, 2018

    redefines class is something you can use the existing memory location for your new variable using the redefines caluse 01 emp-data pic x(100) 05 emp-name pic x (40) 05 emp-no pic x(20) 05 fi...