Hi , I am posting some questons which are asked at
interview. These may help u for ur interview...
what is static and dynamic call?
Answers were Sorted based on User's Feedback
Answer / suman kumar
STATIC CALL: main program object program,sub program object
program loaded in one library
Dynamic call: main program object program, sub program
object program are loaded in different load library.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / nagaraju domala
Static Call : System will establish logical links between
Main and Sub-programs at the time of Compilation where it
creates a unit called RUN-UNIT. When Main program is
invoked automatically all sub programs also loaded into
memory.
Dynamic Call : System will establish links between Main
program and sub programs at the time of execution(Run Time).
We use Different Call depents upon the application
requirement.
| Is This Answer Correct ? | 4 Yes | 0 No |
Extract only those records from a PS file which are having word 'TEXT' in the records using COBOL? The word TEXT is not present in a particular position in all the records.
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
What is a report item?
How to remove 2 duplicate records and copy only one using job control language?
1.give the details about WHEN OTHER. 2. how many form are available in evaluate.
What is SSRANGE, NOSSRANGE ?
01 A pic 9(100) find record length of it
what are difference organizations in cobol and access mode in cobol? can you expalin what organization means while declaring for ksds,esds,rrds?
01 a pic 9(6) value is 123456 01 b pic 9(3) move a to b wht will be the value ?
What is difference between com and com3? Eg. s9(4) so what is the memory it will occupy com and com3.
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?