문제풀이/기타

SAS BASE Q70. find

나루다루 2018. 11. 2. 01:30
728x90

QUESTION NO: 70

The following SAS program is submitted;

data combine;

country = 'Italy, Russia, ireland';

found = find(country, 'i');

run;

 

What is the value of the variable FOUND in the output data set?

 

A. 1

B. 12

C. Italy

D. Russia

 

 

Answer: B





# 문제 풀이

 - find(변수,'문자') : 변수 내에서 해당 문자가 첫번째로 나오는 위치를 표시한다.

 

728x90
반응형