일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 김윤상 객경 정오표
- 객경
- 객관식 경영학
- 노경찬
- 산업인력공단 #산인공 #ncs #모듈형 #정오표
- 아비무쌍
- 강웅
- sas base
- 천소소
- 신입사원 채용
- 무협
- 모듈형 #산인공 #산업인력공단 #ncs #예시문제 #해설
- 금강마신
- 부교공 면접
- 2024 부산교통공사 면접
- 에듀윌특별판
- 코레일
- 김윤상
- 객관식 경영학 정오표
- 에듀윌 봉모
- 아비무쌍 #오존
- 부산교통공사
- 토르마무
- 부교공
- Today
- Total
목록전체 글 (268)
나루다루
QUESTION NO: 56The following SAS program is submitted: data test;set sasuser.employees;if 2 le years_service le 10 thenamount = 1000;else amount = 0;amount_per_year = years_service / amount;run; What is the value of the variable AMOUNT_PER_YEAR if an employee has been with thecompany for one year? A. 0B. 0.001C. 1D. . (missing numeric value) Answer: D - le : less than( =) - 2
QUESTION NO: 55 The following SAS program is submitted: data one;date = '04juI2005'd;format date weekdate.; run;proc print data = one; run; What output is generated? A. Obs date 1 Monday, July 4, 2005B. Obs date 1 July4, 2005C. Obs date 1 04Jul2005D. Obs date 1 Monday, 07/04/2005 Answer: A - weekdate. : 04juI2005 -> Monday, July 4, 2005
QUESTION NO: 54 The following SAS program is submitted: proc freq data = sales;run; Which TABLES statement(s) completed the program and produced the output? A. tables region product;B. tables region * product;C. tables product * region;D. tables product; tables region; Answer: B - 이원분할표 : tables x * y;
QUESTION NO: 53 The following SAS program is submitted: data work.test;array items{3} _temporary_;run; What are the names of the variable(s) in the WORKTEST data set? A. ITEMSB. ITEMS1, ITEMS2, ITEMS3C. No variables are created because it is a temporary array.D. The program fails to execute because there are no variables listed on the ARRAY statement. Answer: C - array items{3} : 길이가 3인 items 배열..
QUESTION NO: 45 The following SAS program is submitted: libname temp 'SAS data library';data temp.sales;merge temp.sales work.receipt;by names;run; The input data files are sorted by the NAMES variable:What is the result? A. The program executes successfully and a temporary SAS data set is created.B. The program executes successfully and a permanent SAS data set is created.C. The program fails e..
- 단순한 출력 문제이다. (멘트가 상당히 마음에 들지 않는다.) - \n : 한줄을 띄움 int main() { printf("강한친구 대한육군\n"); printf("강한친구 대한육군"); }
- 처음에 단순히 출력하는 문제인줄 알고 무시했다가.. 오류 뜨는걸 보고 문제가 있는 걸 알았다. 특수문자 앞에는 \를 붙여야 한다는 사실! - printf문에서 기존에 "와 \는 특수문자로 사용하고 있으므로 단순 입력값과 비교하기 위해 \를 붙여준다. - 예를 들어서, printf(" \" ")를 하면 출력되는 값은 "뿐이다. int main() { printf("|\\_/|\n"); printf("|q p| /}\n"); printf("( 0 )\"\"\"\\\n"); printf("|\"^\"` |\n"); printf("||_/=\\\\__|"); }