what is the basic concept of mainframe? what knowledge is
needed for learn this mainframe?
Answers were Sorted based on User's Feedback
Answer / sreeram
just required analytical skills to work on mainframe.
that's enough.
| Is This Answer Correct ? | 25 Yes | 13 No |
Answer / rachit dwivedi
mainfraim computer is used to perform a certain task.
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / rachit dwivedi
mainfraim computer is used to perform a certain task.
| Is This Answer Correct ? | 0 Yes | 4 No |
Scenario: I have 3 Input Files.Read the first i/p file and depending on certain business logic, I want to read wither i/p file-2 or i/p file-3.Now, depending on certain business logic applied to the record read from either file-2 or file-3, I decide to write them to either output file-2 or output file-2. Question: How many job steps are necessary to implement a solution for the above.
What is a SSRANGE and NOSSRANGE?
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
In EBCDIC, how would the number 1234 be stored?
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
i have a requrement in A as viswa!@#$%&^**reddy i need to move viswareddy in B without junk values pls say how to do ths reply fast
What is an in-line perform ?
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps
What is the maximum length of a field you can define using COMP-3 in COBOL?
How can we increase the size of an existing PDS to include more no. of modules. I tried the answer posted by Jagan(TSO PDS 'pds name') but did not find it working. The answer posted by kamal i know very well. Please suggest me a answer so that we don't need to delete the existing PDS and still we can change the size as well.
given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1