what is the coding difference between COBOL and CICS.

Answers were Sorted based on User's Feedback



what is the coding difference between COBOL and CICS...

Answer / dinesh

COBOL is programming lang for mainframe. CICS is front end tool

Is This Answer Correct ?    24 Yes 1 No

what is the coding difference between COBOL and CICS...

Answer / karim

COBOL is programing language and cics is front end tool use
to create online process

Is This Answer Correct ?    15 Yes 0 No

what is the coding difference between COBOL and CICS...

Answer / raju

GIRISH I THINK THE QUESTION WOULD BE ...

WHAT IS THE CODING DIFFERENCE BETWEEN NORMAL COBOL PROGRAM
AND CICS-COBOL PROGRAM ?

IF YES,

ANS)
1. IN BATCH (NORMAL COBOL) WE DECLARE THE FILES IN
ENVIRONMENT DIVISION WHERE AS IN ONLINE (CICS-COBOL) FCT
WILL BE USED.

2.IN BATCH WE USE ACCEPT & DISPLAY stmts ,in cics we use
SEND/RECEIVE commands.

3.in batch we use GO BACK,EXIT and STOP RUN, IN CICS RETURN
COMMAND TO INDICATE END OF THE PROGRAM.

Is This Answer Correct ?    9 Yes 0 No

what is the coding difference between COBOL and CICS...

Answer / babu

no file description in cics programs

Is This Answer Correct ?    7 Yes 3 No

what is the coding difference between COBOL and CICS...

Answer / sriharichallagundla

COBOL is programming lang for mainframe. CICS is front end tool

Is This Answer Correct ?    3 Yes 0 No

what is the coding difference between COBOL and CICS...

Answer / girish kumar

Im calling sub-program but sub-program is not available what will happen.

Is This Answer Correct ?    1 Yes 0 No

what is the coding difference between COBOL and CICS...

Answer / nag(igate)

i am few answers to Raju's answers....

1. The CICS commands should be coded in keyword-delimiter
i.e EXEC CICS ......END-EXEC. and the cobol not neccesary
to use keyword.

2. The Environment division is optional in CICS , while it
is mandatory in COBOl for decalring files

3. In CICS , we can test whether it is executed the program
first time or not. But in cobo, we cannot test it.

and they are many more.................

Is This Answer Correct ?    0 Yes 0 No

what is the coding difference between COBOL and CICS...

Answer / krishna chaitanya

Hi all

cobol is a high Level language . we can also call it as
programming lang .

CICS is a Language which is used to Develop the Screens .
its just like Scripting lang .

Ex : HTML

Its a lang which deals with assembler level Macros like
DFhmdf,dfhmdi,dfhmsd , dfhpct ........

Cics is a core for mainframes

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More COBOL Interview Questions

How to Write the RESTART Logic Using COBOL?

4 Answers   GalaxE, L&T, Syntel, TCS,


Can we move X(7) to S9(7) COMP?

1 Answers  


What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?

7 Answers   T systems,


What kind of error is trapped by on size error option?

0 Answers  


Give some examples of command terminators?

0 Answers  






What is redefines clause in COBOL?

0 Answers   B-Ways TecnoSoft,


what is S04E error in jcl?

11 Answers   IBM, L&T,


How do you reference the following file formats from cobol programs?

0 Answers  


in cobol perform stmt whether it first checks the condition or not

9 Answers  


There is a variable with value 19446. Requirement is to convert it to 194.46. I tried it by doing divide by 100 and my receiving field data type is 9(03)v99. But the output is 194. I am not getting the decimal value. Could anyone pls let me know how to get this done?

2 Answers  


WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?

3 Answers   TCS,


how to transfer the file from pc to mainframe??

4 Answers  


Categories