What are some examples of command terminators?
Answer / guest
Hi,
Commands terminator means a particular command will be
terminated after the control is executed the line like and-
if, end-perform, end-evalute.
and some command terminator will be there. Please make a
search in google.
hope this will be enough for you if not then let us
know.
Is This Answer Correct ? | 1 Yes | 4 No |
How many times the loop runs here 01 a pic 9(2) value 10. perform para1 a times stop run. para1: move 20 to a.
Size of a column has been changed in DB2 table (Suppose it was of 5 characters and later changed to 4 characters) and forgot to change the DCLGEN in COBOL program, what will happen during the execution of code? If the program Abends then what will be the error? If it doesn't abend then hpw the error can be catched?
consider 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.
Explain how to differentiate call by context by comparing it to other calls?
When is inspect verb is used in cobol?
how to access the file from prodution from changeman tool and to submit a file to production
How can you get the ksds file records into your cobol program?
.How to add one input & one Out file in existing cobol program. how approach tell me step by step.
What does the IS NUMERIC clause establish ?
given the following piece of code: CALL SUB-PGM USING A, B, C. CALL SUB-PGM USING A, C, C. (a) Both CALL statements will always produce same result. (d) Both CALL statements may produce different result. (c) Compile-time error because SUB-PGM is a dataname. (d) Compile-time error because A, B, C are used twice.
if a=b how the flow will complete??? perform test through test-exit. perform activa through activa-exit. test. if a=b then next sentence else move a to c. test-exit. exit. activa. -- -- activa-exit. exit.
File status must be checked both while opening and reading the file or only while reading the file?