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 |
I have a sequential file. How do I access a record in this sequential file randomly in my program ?
what is the difference b/w level no.01 & level no.77?
how can u redefine picx(10) with pic 9(6).
Write down the divisions of cobol program?
Write a program to explain size error.
wht is load module and object module ?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
Hai friends why we need to read a file before re-write a record?
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.
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
Difference between next and continue clause
What is difference between com and com3? Eg. s9(4) so what is the memory it will occupy com and com3.