)If there are 10 steps in GDG, if I want to refer the step2
after step5 . what should I do?
No Answer is Posted For this Question
Be the First to Post Answer
i want to learn mainframes. i completed MCA ,whats the future of mainframes
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 Reentrancy and Quasi-reentrancy?
Explain how to differentiate call by context by comparing it to other calls?
01 a pic 9(3) value is 123 01 b pic 9(6) move a to b wht will be the value ? and 01 a pic x(6) value is abc 01 b pic x(3) move a to b wht will be the value ?
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.
hw to create 3 dimensional array & hw to access it?
What is rmode(any) ?
i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,copy,write operations).plz give me details of all posible JCL utilities?
how can count the number of character in feild ?? suppose for instance i have a feild with value ' rajesh sarkar' then how can v count the number of characters whitout spaces...........
s9(18) comp-3:: What is the size of memory it takes internally?
Can anyone explain me CALL procedure in COBOL.Does it carries similarities like call by reference in C.