Question 43: You have been given below values in a variable name TotalFee
4000
5000
3000
.
6000
7000
Once you execute below statement, what would be the ENTIREFEE values at end of execution
RETAIN ENTIREFEE 5000;
ENTIREFEE+TotalFee;
When you are at the 4th observation than what would be the value of ENTIREFEE
- 0
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering SAS Certification Material
Correct Answer : 5 Exp : Retain will help you to initialize the value. Here, ENTIREFEE will have initial value as 5000. Then will be added up
You can access to full explanation to question and answer from this page.