how many divisions are there in cobol
Answers were Sorted based on User's Feedback
Answer / snehatechm
IDENTIFICATION DIVISION,ENVIRONMENT DIVISION,DATA
DIVISION,PROCEDURE DIVISION
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / bhaskar r
IDENTIFICATION DIVISION
ENVIRONMENT DIVISION
DATA DIVISION
PROCEDURE DIVISION
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / guest
four division are there .
1.identification division
2.environment division
3.data division
4.procedure division
| Is This Answer Correct ? | 4 Yes | 0 No |
wht happens if we dnt give scope terminator ?
consider the following PROCEDURE DIVISION entry OPEN EXTEND IN-FILE identify the correct statement a.organization of IN-FILE is sequential and records can be added in the beginning b.organization of IN-FILE is sequential and records can be added in the end c.organization of IN-FILE is indexed and records can be added in the beginning d.organization of IN-FILE is indexed and records can be added in the end
Scenario: I have 3 Input Files.Read the first i/p file and depending on certain business logic, I want to read wither i/p file-2 or i/p file-3.Now, depending on certain business logic applied to the record read from either file-2 or file-3, I decide to write them to either output file-2 or output file-2. Question: How many job steps are necessary to implement a solution for the above.
01 a pic x(6) value is abcdef 01 b pic x(3) move a to b wht will be the value in b ?
hai friends ,i have HSBc exam on this sunday,my platform is Mainframe,i have 1 year exp,pls any one send me placement papers of Hsbc and technical questions on mainframe
6 Answers Citi Bank, CitiGroup, HSBC, iNautix, Wipro,
input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.
What is mean by maxcc
How do you define a sort file in JCL that runs the COBOL program?
in real time what is the suitable exp where in-stream procedure is better then catalog procedure.
Define in-line perform?
What is "Call by content" and "call by reference"?
How many sections are there in data division?.