Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1- In the code below what's the display result for both fields WS-NAME and WS-ID after compile and execution DATA DIVISION. WORKING-STORAGE SECTION 01 WS-NAME
1- In the code below what's the display result for both fields WS-NAME and WS-ID after compile and execution DATA DIVISION. WORKING-STORAGE SECTION 01 WS-NAME PIC X(30) VALUE 'ABCDEF 1 WS-ID PIC 9(5) PROCEDURE DIVISION. A000-FIRST-PARA INITIALIZE WS-NAME INITIALIZE WS-ID REPLACING BY 12345. DISPLAY "My name is"WS-NAME DISPLAY "My ID is "WS-ID. STOP RUN. L Define 3 nurneric fields with length of 9, NUM with value 5, NUM2 with value 10, NUM3 with value 15. 3 - Using the fields in question 2, what is the result if we compile and execute the code below. PROCEDURE DIVISION. ADD NUMI NUM2 TO NUM3 DISPLAY "NUM3." NUM3 ADD NUMI NUM2 GIVING NUM3. DISPLAY "NUM3 "NUM3 STOP RUN. 4 -Define a numeric field to hold value of 123.45. 5- Define a numeric field to hold value of 3.5. Show the display value of the field after compile and execution
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started