일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 금강마신
- 부교공
- 객관식 경영학 정오표
- 아비무쌍
- 강웅
- 무협
- 산업인력공단 #산인공 #ncs #모듈형 #정오표
- sas base
- 아비무쌍 #오존
- 천소소
- 모듈형 #산인공 #산업인력공단 #ncs #예시문제 #해설
- 객경
- 김윤상
- 코레일
- 토르마무
- 2024 부산교통공사 면접
- 신입사원 채용
- 노경찬
- 에듀윌 봉모
- 부산교통공사
- 에듀윌특별판
- 부교공 면접
- 김윤상 객경 정오표
- 객관식 경영학
- Today
- Total
목록전체 글 (267)
나루다루
QUESTION NO: 28The contents of the raw data file PRODUCT are listed below:24613 $25.31 The following SAS program is submitted:data inventory;infile 'product';input idnum 5. @10 price;run; Which one of the following is the value of the PRICE variable? A. 25.31B. $25.31C. . (missing numeric value)D. No value is stored as the program fails to execute due to errors. Answer: A # 문제 풀이 - @10 : 데이터의 10..
QUESTION NO: 27The following SAS program is submitted:libnametemp 'SAS data library';data work.new;set temp.jobs;format newdate mmddyy10.;mdate= month(newdate);ddate= weekday(newdate);run; proc print data = work.new; run; The variable NEWDATE contains the SAS date value for April 15. 2005. What output is produced if April 15, 2005 falls on a Friday? A. Obs newdate mdate ddate1 04/15/2005 APR 6B...
QUESTION NO: 26Given the SAS data set WORK.AWARDS: WORK.AWARDS FNAME POINTS MONTHAmy 2 4 Amy 1 7 Gerard 3 3 Wang 3 3 Wang 1 12 Wang 1 8 The following SAS program is submitted: proc sort data = work.awards; by descending fname points; run; How are the observations sorted? A. FNAME POINTS MONTH Wang 3 3 Wang 1 12 Wang 1 8 Gerard 3 3 Amy 2 4 Amy 1 7 B. FNAME POINTS MONTH Amy 2 4 Amy 1 7 Gerard 3 3 ..
1. 원작에서는 레드스톰->아비무쌍이지만 웹툰에서는 아비무쌍->레드스톰이다. 일단 원작이든 소설이든 천명훈은 레드스톰에 율리안의 스승으로서 등장합니다. 원작 아비무쌍에서는 천명훈이 등선하고, 그의 손녀인 천소소가 마교 교주를 이어받았다가 죽고, 그 다음으로 선유라는 인물이 마교교주를 맡게 됩니다. 아비무쌍 시절의 마교교주는 선유인거죠. 결국 아비무쌍은 천명훈이 등선하고 한참 후의 이야기입니다. 반면에 웹툰에서는 선유라는 인물이 삭제되고 천명훈과 천소소가 마교교주로 등장하게 됩니다. 웹툰 내에서 천명훈이 교주였다가 등선을 하게 되는데, 등선 한 후에 레드스톰 세계관으로 넘어가게 되는겁니다. 결국 아비무쌍->레드스톰 or 동시대정도라고 생각 할 수 있겠죠. 2. 마교의 교주는 천소소이다. 1번에서 나온 내용..
덤프 문제 풀다보면 자주 나오는 것 중 하나가 informat과 format이다. - format : 데이터를 불러 온 후, 형식(format)을 변경. data를 출력하는 형식 - informat : 데이터를 불러 올 때, 형식(format)을 변경. data를 읽어오는 형식 format은 data를 불러와서 작업하다가 data 형식을 바꾸고 싶을때 사용한다. 즉 data를 출력하는 형식이다. - proc format문을 사용한다.informat은 data를 불러오는 단계에서 형식 설정을 한다. 즉 data를 읽어오는 형식이다. - data 쓰기 단계에서 format을 지정한다. 결국 명령어는 같지만, 어느 위치에 쓰이냐에 따라 format과 informat이 나눠지게 되는 것이다. 많이 쓰이는 명령어..
QUESTION NO: 58 The following SAS program is submitted: data work.total;set work.salary(keep = department wagerate);by department;if first.department then payroll = 0;payroll + wagerate;if last.department;run; The SAS data set named WORKSALARY contains 10 observations for each department, and iscurrently ordered by DEPARTMENT. Which statement is true? A. The BY statement in the DATA step causes ..
QUESTION NO: 57Given the SAS data set PERM.STUDENTS: PERM.STUDENTS NAME AGEAlfred 14Alice 13Barbara 13Carol 14 The following SAS program is submitted: libname perm 'SAS data library';data students;set perm.students;file 'file specification';put name $ age;run; The following double-spaced file is desired as outputAlfred 14 Alice 13 Barbara 13 Carol 14 Which statement completes the program and cre..
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