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

In EBCDIC, how would the number 1234 be stored?

TCS,

2 10625

What are VS COBOL 11 special features?

1 5290

What are options have been removed in COBOL 11?

1 4163

What is the reference modification.

2 11094

How would the number +1234 be stored if a PIC clause of PICTUREs9(4) comp-3 were used?

6 16429

What is an index for tables?

2 6715

What is a subscript ?

3 7760

What is Alternate Index ? How is it different from regular index ?

2 15006

What is CALL statement in COBOL?

4 17340

When can the USING phrase be included in the call statement ?

2 6880

What does the initialize statement do ?

2 7349

What are the two search techniques ?

iGate,

2 10166

consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250

TCS,

3 9012

consider two data items 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move

TCS,

5 12877

what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C

TCS,

3 14541


Post New COBOL Questions

Un-Answered Questions { COBOL }

Explain about different table spaces.

1155


How to print 10 to 1 if the input have only 10 digit number?

1309


What is perform what is varying?

1224


What is amode(31)

1223


What are the different rules for performing sort operation?

1283


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

1547


I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......

12545


I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.

2497


How do you define a variable of comp-1 and comp-2?

1261


EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?

2597


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

1235


What is the local-storage section?

1197


For rewrite, why is it mandatory that file needs to be opened?

1154


What is the default value(s) for an initialize and what keyword allows for an override of the default?

1268


if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.

6677