HELLO FRIENDS,
THIS IS JANARDHAN.GADIRAJU, I FACED ONE INTERESTING
QUESTION IN COBOL, THAT IS WHAT ARE THE VALUES WE CAN SEE
IN HIGHVALUES AND LOWVALUES, CAN U PLEASE GIVE ME THE ANSWER
Answers were Sorted based on User's Feedback
Answer / nihar ranjan karan
I completely agree with Nikhil...
To add up a few more points which will be of help.....
Open up a dataset and put HEX ON , you will see the
following results assuming the variable occupies 4 bytes of
space:
low values 00000
00000
high values FFFF
FFFF
spaces 4444
0000
display item numbers FFFFFFFFFF
0123456789
characters A - Z will be of the following form:
C1-C9 will represent A-I,D1-D9 will represent J-R,E2-E9
will represent S-Z
comp-3 ...for example if number is positive 5893.
0083
059C
for negative last character will be D.
For comp it is converted into its hexadecimal equivalent.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / jeena.mj
You cannot move LOW-VALUES or HIGH-VALUES to a "PIC 9"
field.
if we move low value and high values to alpha or
alphanumeric field the low value and high values are
x'0000' and x'FFFF'
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / nikhil
answer 2 is misleading. First of all you cannot use these
figurative constants for numeric variables.Second the first
answer gives the correct value. Please do not post anything
without confirming. Our aim is to provide correct answers.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / jack
What to check for alphanumeric fields
Move spaces to low-values
Move 'zzzzzzzz' to high-values.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sejacoemor
I agree with Nikhil that our aim is to provide correct answers.
For Answer #4 (Nihar Ranjan Karan)
to compute for number of bytes for COMP-3:
count the total number of digits, divide it by 2 (disregard any fraction) then add 1. So, in the example if number is positive 5893.
it will be stored in 3 bytes only (not 4)
083
59C
---------------------------------------------
For Answer #5 (which actually a question from Prasenjit_in)
moving LOW-VALUES to a KEY-FIELD will point to 1st record while moving HIGH-VALUES to KEY-FIELD points to last record.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / prasenjit_in
HI all related to high values i also faced a sort of similar
question....The question was if we move high values to a
record structure of a file and then read it what will the
o/p show.will it show the last record in the file.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / necron
if the field is an alphabetic or alphanumeric you will have
spaces and if it is numeric you will have zeroes..(for low-
values)...i dont know abt high values! ;-)
| Is This Answer Correct ? | 1 Yes | 11 No |
In the JCL, how do you define the files referred to in a subroutine ?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
What is the point of the REPLACING option of a copy statement?
when iam reading a flat file which has 100 records through cobol program when iam reading 50th records it gets abends .. so when i run the program again it should read from 50th record .where it got abened ? how it is possible
What is the output generated by the following code? 01 GRP-I. 05 SUBFLD1 PIC XX VALUE "AB". 05 FILTER PIC X(6) VALUE SPACES. 01 GRP-2 REDEFINED GRP-1. 05 SUB-FLD2 PIC XX. 05 SUB-FLD3 PIC XX. 05 FILTER PIC X(4). IF SUB-FLD1 NOT = SPACES DISPLAY "SUBFLD1" MOVE "ABBCCD" TO GRP-1 IF SUB-FLD3 = SPACES DISPLAY "SPACES" ELSE DISPLAY "SUBFLD3" DISPLAY "END" ELSE DISPLAY "SPACES" DISPLAY "END". (a) SUBFLD1 SUBFLD3 END (b) SPACES END (c) SUBFLD1 END (d) SUBFLD1 SPACES
if you code move high-values to variable,can you move it into numeric variable or alphanumeric variable?
Can printer files (having 133 characters) be of variable length?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
OCCURS clause is used in the DATA DIVISION on data names at (a) 01 level (b) 77 level (c) 88 level (d) any level from 02 to 49
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
hai friends ,i have HSBc exam on this sunday,my platform is Mainframe,i have 1 year exp,pls any one send me placement papers of Hsbc and technical questions on mainframe
6 Answers Citi Bank, CitiGroup, HSBC, iNautix, Wipro,
The order of precedence of arithmetic operators in an expression can be overridden with the use of (a) [] (b) () (c) {} (d) Any of the above