i want to learn mainframes. i completed MCA ,whats the
future of mainframes
Answers were Sorted based on User's Feedback
Answer / devesh
Future of mainframes is surely Bright.All major banks and
insurances companies have their data backed on
Mainframes.There is no software till now to replace
it..UNIX tried but not that successful..and also till now
no one has hacked the mainframes . it is still secure
software unlike others.
All major BIG software giants use it because only they have
the money to pay hiring cost of mainframe to IBM which is
usually in Crores..
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / suputhru
Mainframes is Mainframes.
No one can beat it.
mainframes will have surely Constant Bright future.
I agree with Devesh.
"Finally, Please don't come blindly in to mainframes family."
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / naresh
mainframes has good opportunities but it is very costly tool.if we satisfy the institute and understand cobol coding then we learn otherwise better to go other courses.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / jay
LEMURIA TECHNOLOGIES , NEAR VALUVAR KOTAM IN CHENNAI
IT IS A VERY GOOD PLACE TO LEARN MAINFRAME
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / bhagya
Mainframes has no further scope because the companies which
already have MF projects only go for mainframe resources.
Also mainly large companies have MF projects.So by studying
MF we wont get a job easily.Mainframes + Informatica tool
is having a lot of vacancies nowadays.
| Is This Answer Correct ? | 5 Yes | 17 No |
How do define dynamic array in cobol.
where will we code call by content and call by reference dude pls reply soon ?
Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks
what are the isolation levels and where we use it in the db2 program
copy 100 records without using ibm utilities
Difference between ps, esds
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
How many maximum number of procedures can we write in one COBOL program?
How to Pass table from a cobol program to another cobol program and how to use that table in called program
Difference between file status codes 02 and 22.... since both are for duplicate key detection.
I have a sequential file of 100 records. How do I load the records into a two dimensional array ?
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?