what is the result of the following?
DIVIDE A INTO B GIVING C.
a.C=A/B
b.the reminder of B/A is stored in C
c.C=B/A
d.the reminder of A/B is stored in C
Answers were Sorted based on User's Feedback
Answer / sunaina
Here in the above formula, we are Dividing the value of B
by A, and storing the value into C.
Ex:
A=10
B=20
then
C= B/A i.e, C= 20/10
the value 2 is stored in C.
So the result is:
C=B/A.
| Is This Answer Correct ? | 17 Yes | 2 No |
How do you do in-line PERFORM?
I have 100 records in a file.. i want to sort the records from 5 to 5o... give the syntax...
How many types of sorts are there in cobol?
what is the difference between Normal vaiable and comp variable.
Write a program to explain size error.
what is s013u000 for?
Write a program to enter and display the names of students in a class using the occurs clause.
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
Give some examples of command terminators?
How is sign stored in a comp-3 field?
With in these three which one is the default one Call Reference, Call By Value, Call By Content.-Which one is default?
I have two sequential files, FILE-1 and FILE-2. FILE-1 contains 2 columns(A,B) and FILE-2 contains 3 columns (C,D,E).I want an output file, FILE-3 which has all five columns with duplicates eliminated from column A.