일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 객관식 경영학 정오표
- 노경찬
- 산업인력공단 #산인공 #ncs #모듈형 #정오표
- 김윤상 객경 정오표
- 아비무쌍
- 신입사원 채용
- 코레일
- 에듀윌특별판
- sas base
- 모듈형 #산인공 #산업인력공단 #ncs #예시문제 #해설
- 아비무쌍 #오존
- 에듀윌 봉모
- 김윤상
- 천소소
- 토르마무
- 부교공 면접
- 객경
- 금강마신
- 무협
- 부산교통공사
- 2024 부산교통공사 면접
- 객관식 경영학
- 부교공
- 강웅
- Today
- Total
목록전체 글 (267)
나루다루
QUESTION NO: 41The following SAS program is submitted:data work.test;set work.staff (keep = jansales febsales marsales);array diff_sales{3} difsales1 - difsales3;array monthly{3} jansales febsales marsales;run; What new variables are created? A. JANSALES, FEBSALES and MARSALESB. MONTHLY1, MONTHLY2 and MONTHLY3C. DIFSALES1, DIFSALES2 and DIFSALES3D. DIFF_SALES1, DIFF_SALES2 and DIFF_SALES3 Answer..
QUESTION NO: 40What is the purpose or the MISSOVER option on the INFILE statement? A. It prevents SAS from loading a new record when the end of the current record is reached. B. It enables SAS to scan the input data records until the character string that is specified in the @'character-string' expression is round. C. It enables SAS to continue to read the next input data record if it does notfi..
QUESTION NO: 39The following SAS program is submitted: proc format value score 1 - 50 = 'Fail' 51 - 100 = 'Pass';run; proc report data = work.courses nowd;column exam;define exam / display format = score.;run; The variable EXAM has a value of 50.5. How will the EXAM variable value be displayed in the REPORT procedure output? A. FailB. PassC. 50.5D. . (missing numeric value) Answer: C # 문제 풀이 -
QUESTION NO: 38Given the SAS data set EMPLOYEE INFO:EMPLOYEE_INFO The following SAS program is submitted:proc sort data = employee_info;run; Which BY statement completes the program and sorts the data sequentially by ascending expense values within each ascending IDNUMBER value? A. by Expenses IDNumber;B. by IDNumber Expenses;C. by ascending Expenses IDNumber;D. by ascending IDNumber ascending E..
QUESTION NO: 37Given the raw data file YEARAMT: 1901 2 1905 1 1910 6 1925 .1941 1 The following SAS program is submitted:data coins;infile 'yearamt';input year quantity;run; Which statement(s) completed the program and produced a non-missing value for the variable TOTQUANTITY in the final observation of the output data set? A. totquantity + quantity;B. totquantity = sum(totquantity + quantity);C..
QUESTION NO: 36The value 110700 is stored in a numeric variable named SALARY.Which FORMAT statement displays the value as $110,700.00 in a report? A. format salary comma11.2;B. format salary dollar8.2;C. format salary dollar11.2;D. format salary comma8.2 dollar8.2; Answer: C # 문제 풀이 - comma11.2; : 3자리 수마다 콤마로 구분. - dollar11.2; : 맨 앞에 달러 표시를 붙임.
QUESTION NO: 35The following SAS program is submitted:proc freq data = class;tables gender * age / ;run; The following report is created:The FREQ ProcedureTable of gender by ageRow ColumnGender age Frequency Percent Percent PercentF 11 1 10.00 20.00 50.00 12 2 20.00 40.00 40.00 13 2 20.00 40.00 66.67Total 5 50.00 100.00 M 11 1 10.00 20.00 50.00 12 3 30.00 60.00 60,00 3 1 10.00 20.00 33.33Total 5..
QUESTION NO: 34The data set RALESTATE has the variable LOCALFEE with a format of 9. and a variable COUNTRYFEE with a format of 7.; The following SAS program is submitted:data history;format localfee countryfee percent6.;set realestate;localfee = localfee / 100;country fee = countryfee / 100;run; What are the formats of the variables LOCALFEE and COUNTRYFEE in the output dataset? A. LOCALFEE has ..