174k views
5 votes
In the program below, what is the value of Credit if Country is 'au'?

data ; set ;
if Country='US' then Credit=300;
else if Country='AU' then Credit=500; else Credit=0;
run;

User Mixcels
by
7.6k points

1 Answer

4 votes

Final answer:

The value of Credit if Country is 'au' in the program is 500.

Step-by-step explanation:

The value of Credit if Country is 'au' in the given program is 500.

User Nazim Zeeshan
by
7.9k points