Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

Which code uses the correct syntax to conditionally create the two variables age-Cat and account?

A.

if age<13 do then;

age_Cat='Pre-teen';

account='No Social Media Allowed';

end;

B.

if age<13 then do;

age_Cat-'Pre-teen';

account-'No Social Media';

end;

C.

if age<13 then

age_Cat-' Pre-teen'

account='No Social Media Allowed';

end;

D.

if age<13 do;

age_Cat-' Pre-teen';

account='No Social Media Allowed';

end;

When the following code is submitted, execution fails.

Why does the execution fail?

A.

Multiple executable statements are not allowed in the DO block.

B.

The OUTPUT statement is not allowed in the DO block.

C.

There are two unclosed DO block.

D.

The conditional logic expressions fail for the DO block

The SAS log of a submitted DATA step is shown below:

Which action resolve the error messages?

A.

Remove the period after the value of Inc.

B.

Enclose the value of ABC Inc . in quotation marks.

C.

Add a LENGTH statement to declare the company variable as character

D.

Enclose the value of ABC Inc. in parentheses.