‎2007 Jun 06 10:07 AM
You may change the following data object as shown below so that it equals 3.14.
CONSTANTS: PI type P decimals 2 value '3.1'.
PI = '3.14'.
A: True
B: False
‎2007 Jun 06 10:12 AM
Hi,
<b>B.False.</b>
<b>The Field 'PI' cannot be changed.</b>
Regards,
Padmam.
‎2007 Jun 06 10:24 AM
hi,
B: False as the constant values cannot be changed.
Regards,
Santosh
‎2007 Jun 06 10:31 AM
hi manjula,
r u conduting puzzle here?
be proffestional yaar.
regards,
seshu.
‎2007 Jun 06 10:35 AM
‎2007 Jun 06 10:41 AM
Hi,
Ans: B - False.
PI value cannot be change.
Constants are named data objects that you create statically using a declarative statement. They allow you to store data under a particular name within the memory area of a program. The value of a constant must be defined when you declare it. It cannot subsequently be changed. The value of a constant cannot be changed during the execution of the program. If you try to change the value of a constant, a syntax error or runtime error occurs.
You declare them using the CONSTANTS statement.
Regards,
Bhaskar