Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

general

Former Member
0 Likes
896

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

5 REPLIES 5
Read only

Former Member
0 Likes
775

Hi,

<b>B.False.</b>

<b>The Field 'PI' cannot be changed.</b>

Regards,

Padmam.

Read only

Former Member
0 Likes
775

hi,

B: False as the constant values cannot be changed.

Regards,

Santosh

Read only

Former Member
0 Likes
775

hi manjula,

r u conduting puzzle here?

be proffestional yaar.

regards,

seshu.

Read only

Former Member
0 Likes
775

PI Is constant. SO u cannot change..

Read only

Former Member
0 Likes
775

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