In an array processing what is the thing that can be done by using subscripts but not by using index
4 13993hi. This is Ram.i have one doubt.why can't we display comp-3 variables directly? let me answer quickly plez........
1 5774In COBOL CALL-CALLING,if a program A is calling 3 sub- programs, dynamically, then it is said sub-programs will always will always in Initial Mode. My question is : Do we need to code CANCEL or (IS INITIAL) for dynamically called sub-programs or it is the property of Dynamically called pgms so every time sub-pgms are called they will be in initial mode. ***This question is only Dynamic call****, Please reply. Thank you in advance.
4 9559consider the fallowing 77 stat pic 9. 88 male value 1,2,3. 88 female value 4 through7. what will be the value of stat a) set male to true. b) set female to true.
5 7119what will be the output when a)pic 9(6)value 000178 is moved to pic ***,***. b)pic 9(5) value 57397 is moved to pic $$,$$9.
5 6763in cobol i have one file it contains records like 10,4,23,98,7,90..... total records 100. iwant 10 to 20 in reverse order in cobol environ ment any one please give the answer......
IBM,
2 6561The below is the declaration for a variable ws 01 ws pic 9(3). if you want to insert space how will you do that. in which level u should do it
ADP,
3 7216how will u retreive value from a table.write it with syntex. 01 ws-table 05 ws-table1 occurs 10 times. 05 ws-table2 occurs 10 times. the above is 2 dimensional array..how will u retrieve 1st element of an array
ADP,
3 7813
What are declaratives and what are their uses in cobol?
When is inspect verb is used in cobol?
) How do u handle errors in BMS macro?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
i want a program using by if, evaluate , string, unstring, perform, occurs?
Explain the configuration section of a cobol program with examples of syntax.
What is the difference between binary search and sequential search?
What is the difference between a binary search and a sequential search what are the pertinent cobol?
For rewrite, why is it mandatory that file needs to be opened?
how to access the file from prodution from changeman tool and to submit a file to production
What is difference between static and dynamic call in cobol?
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
Explain about different table spaces.
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.