BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
POOJA_J
Obsidian | Level 7

POOJA_J_0-1697546347258.png

 

I cam across one of this MCQ's. 

The macro doesn't have a DO loop so how does it create values of 3,2,1?

Plz explain the logic working behind this.

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

The "magic" is in the first line. The %EVAL macro will evaluate it's argument when the code is run.

So when n=4, the first line evaluates to 
%EVAL( 4 + %mysum(3) ).

This causes the %MYSUM macro to be run with a new argument. This time the first line evaluates to (dropping the %EVAL call, for convenience)
3 + %mysum(2).

This continues recursively until the argument n=1, in which case the macro generates 

1

Cumulatively, the macro generates an expression that is equivalent to 

%EVAL(4 + %EVAL(3 + %EVAL(2 + 1)))
which is displayed in the log by using the %PUT call.

View solution in original post

4 REPLIES 4
Rick_SAS
SAS Super FREQ

The "magic" is in the first line. The %EVAL macro will evaluate it's argument when the code is run.

So when n=4, the first line evaluates to 
%EVAL( 4 + %mysum(3) ).

This causes the %MYSUM macro to be run with a new argument. This time the first line evaluates to (dropping the %EVAL call, for convenience)
3 + %mysum(2).

This continues recursively until the argument n=1, in which case the macro generates 

1

Cumulatively, the macro generates an expression that is equivalent to 

%EVAL(4 + %EVAL(3 + %EVAL(2 + 1)))
which is displayed in the log by using the %PUT call.

Quentin
Super User

Curious which class this is from, can you share?  I don't see a lot of recursive macros.  I would consider it an advanced topic for the macro language (but I guess would be included in an introductory class for many languages).

The Boston Area SAS Users Group (BASUG) is hosting our in person SAS Blowout on Oct 18!
This full-day event in Cambridge, Mass features four presenters from SAS, presenting on a range of SAS 9 programming topics. Pre-registration by Oct 15 is required.
Full details and registration info at https://www.basug.org/events.
POOJA_J
Obsidian | Level 7
I searched in google - MCQ questions for Advanced SAS certification.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 677 views
  • 4 likes
  • 4 in conversation