Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

COBOL Interview Questions
Questions Answers Views Company eMail

How to convert bunch of words in a line to relvant ASCII values?

2 5775

How to covert given string into ASCII value in COBOL/MF COBOL

CTS, IBM, iFlex,

3 15237

How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".

3 8455

Please let me know how the Eject verb works for page break.. I want to know the code, how it is used.

3 7607

How to delete leading spaces/blank in COBOL ? Example:- 01 data-name-1 pic x(220) " English is a language". I would like to delete leading spaces.

Financial Services,

7 78301

Wat is the difference between NEXT and CONTINUE statement in cobol,can any one explain with example.

Deloitte,

11 60024

I have PS flat file with 14 records. I want to read from 4th to 9th record and want to write those 6 records (4th record to 9th record) to another PS file (output file). there is no key defined in the input file. I just want read a certain Consecutive records. can any one please give me the procedure division Coding for this. I have coded the below coding but the READ-PARA is performing only 1 time even though I have 14 records in my input file (i.e FILE-1): PROCEDURE DIVISION. A000-SECTION. MOVE 0 TO I. OPEN INPUT FILE-1. IF CHECK-KEY1 > 0 DISPLAY "OPEN ERROR FOR FILE-1, CODE IS:" CHECK-KEY1 END-IF. OPEN EXTEND NEWFILE-1 IF CHECK-KEY3 > 0 DISPLAY "OPEN ERROR FOR NEWFILE-1 COD IS" CHECK-KEY3 END-IF. PERFORM READ-PARA THRU EXIT-PARA UNTIL EOF-REC = 'YES'. DISPLAY " FINALLY OUT OF LOOP" CLOSE FILE-1 CLOSE NEWFILE-1 STOP RUN. READ-PARA. ADD 1 TO I READ FILE-1 AT END MOVE 'YES' TO EOF-REC IF I > 3 AND < 10 PERFORM WRITE-PARA ELSE DISPLAY "NOT IN RANGE" END-IF. EXIT-PARA. EXIT. WRITE-PARA. WRITE NEW-REC FROM FILE1-REC.

IBM,

8 35719

01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.

FirstApex, NIIT,

11 28776

period is missing in the cobol program which error we getting

TCS, Tesco,

5 26762

I have two sequential files, FILE-1 and FILE-2. FILE-1 contains 2 columns(A,B) and FILE-2 contains 3 columns (C,D,E).I want an output file, FILE-3 which has all five columns with duplicates eliminated from column A.

3 9585

after udatingg first 110 rows, my job abends. now how do i change my cobol program so that when i restart the Job it will start updating from 111th row ( i.e in next run I di=ont want to update those 110 rows which are already been updated in the first run before job abend)

Allianz, Wipro,

7 27226

Determine the total no of bytes in the following. 01 rec1. 02 a pic x(6) 02 b redefines a. 03 c occus 6 times pic 9. 02 d occurs 6 times pic 9. 03 e pic x(5) 03 f pic 999.

12 18980

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?

TCS,

3 9684

which generation language is cobol

Kanbay,

4 11658

can we use full outer join with cursors declared in cobol program?

2 9337


Post New COBOL Questions

Un-Answered Questions { COBOL }

how do you define single dimensional array and multidimensional array in your cobol?

1151


What is a scope terminator give example?

1159


What is static and dynamic call in cobol?

1117


How to remove 2 duplicate records and copy only one using job control language?

1262


What is the difference between external and global variables in COBOL?

1546


How you can read the file from bottom?

1197


)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?

2069


can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there

2520


What are the different open modes available in cobol?

1250


What are all the divisions of a COBOL program?

1276


Name the sections present in data division.

1315


How to use the same COBOL program in Batch and CICS on lines? explain with an example

2441


What is the compute verb? How is it used?

1190


How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?

1270


What is the Purpose of Pointer in the string?

1127