Answer Posted / saurabh biswas
In MVS assembler data type X denotes hexadecimal data type
which unsigned pack. suppose you define VAR1 as "VAR1 DC
X'01'". It will occupy 1 byte in the memory and stored as:
0 in the zoned nibble and 1 in the numeric nibble.
P denotes the packed data type, similar to COMP-3 in COBOL.
if you declare any variable with this data type then it
must have a sign byte at last nibble. See following example:
VAR2 DC P'1'
it will occupy one byte in the memory and stored as '1C'.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain how to access vsam file?
What is the use of trt instruction?
What is icm instruction?
how to retrieve the instream data in sysin?
Explain about house keeping in assembler?
What is need of start 0?
What does the following code do? Ap wkur,=p5 where wkur is a label?
how to initialize a register to 0000?
How many maximum base registers we can have in a program?
Explain how to produce soc7 abend?
how do you round the addition or subtraction of two numbers in assembler? what does the following code do? change process tool(code changes from dev to prd) the changes made to your code should be effected in live. How the process takes place. That is how can you move the code changes from development to production?
What is need of start 0? In steed of can we use anyother numerics? If we use what will happen?
What is house keeping in assembler?
Ap wkur,=p5 where wkur is a label?
How to pass the parameters from jcl to assembler program?