Write a cobol program making use of the redefine clause.
No Answer is Posted For this Question
Be the First to Post Answer
give the examples of strings in cobol
what is the difference between Normal vaiable and comp variable.
What compiler option would you use for dynamic linking?
what is the basic concept of mainframe? what knowledge is needed for learn this mainframe?
consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I am going to Display the WS-VARX and WS- VARN?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
what modification we need to do in jcl if we use sort in cobol? I mean whether we need to include tempary file used for sorting in assign statement?
How can we know that cobol program is using report file or simple file....?
how you read control card into array?
How to print 10 to 1 if the input have only 10 digit number?