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



HELLO FRIENDS, THIS IS JANARDHAN.GADIRAJU, I FACED ONE INTERESTING QUESTION IN COBOL, THAT IS W..

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

HELLO FRIENDS, THIS IS JANARDHAN.GADIRAJU, I FACED ONE INTERESTING QUESTION IN COBOL, THAT IS W..

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

HELLO FRIENDS, THIS IS JANARDHAN.GADIRAJU, I FACED ONE INTERESTING QUESTION IN COBOL, THAT IS W..

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

HELLO FRIENDS, THIS IS JANARDHAN.GADIRAJU, I FACED ONE INTERESTING QUESTION IN COBOL, THAT IS W..

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

HELLO FRIENDS, THIS IS JANARDHAN.GADIRAJU, I FACED ONE INTERESTING QUESTION IN COBOL, THAT IS W..

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

HELLO FRIENDS, THIS IS JANARDHAN.GADIRAJU, I FACED ONE INTERESTING QUESTION IN COBOL, THAT IS W..

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

HELLO FRIENDS, THIS IS JANARDHAN.GADIRAJU, I FACED ONE INTERESTING QUESTION IN COBOL, THAT IS W..

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

Post New Answer

More COBOL Interview Questions

Please let me know at which Scenarios we will go for STATIC call or DYNAMIC

3 Answers   IBM,


What are subroutines ? and how do we pass data to the sub routines?

2 Answers   Xansa,


how to crack cts interview apps? NOVEMBER 21 2010

2 Answers   CTS,


How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?

0 Answers  


s9(18) comp-3:: What is the size of memory it takes internally?

4 Answers  






what is rediffine clause?in what situation it can use?give me real time example?

1 Answers   IBM,


Why we need to use redefine clause when we can define the variable seperately... what is actual need....

5 Answers   Accenture,


write a program to eliminate duplicate records in a input file and send them to output file.

2 Answers   IBM,


What is the figurative constant in cobol?

1 Answers  


can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech

0 Answers  


1.Can we define condition-name conditions in FD entry.

11 Answers  


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

0 Answers  


Categories