일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 김윤상
- 2025년 #부산교통공사 #채용
- 토르마무
- 노경찬
- 강웅
- 부산교통공사
- 에듀윌특별판
- 천소소
- 산업인력공단 #산인공 #ncs #모듈형 #정오표
- 에듀윌 봉모
- 코레일
- 무협
- 2024 부산교통공사 면접
- 김윤상 객경 정오표
- 신입사원 채용
- 객관식 경영학 정오표
- 객관식 경영학
- sas base
- 아비무쌍 #오존
- 부교공 면접
- 아비무쌍
- 모듈형 #산인공 #산업인력공단 #ncs #예시문제 #해설
- 객경
- 2025년 #부산교통공사 #채용 #ncs #필기 #공부법
- 부교공
- 금강마신
- Today
- Total
목록문제풀이/기타 (140)
나루다루
QUESTION NO: 31Given the AIRPLANES data set : AlRPLANES TYPE MPGF-18 105C-130 25Harrier 75A-6 110 The following SAS program is submitted:data gt100;set airplanes(keep = type mpg load);load = mpg * 150;run; The program fails to execute due to syntax errors. What is the cause of the syntax error? A. MPG is not a numeric variable.B. LOAD is not a variable in the data set GT100.C. LOAD is not variab..
QUESTION NO: 30The following SAS program is submitted:data test;set chemists;if jobcode= 'Chem2' then description = 'Senior Chemist';else description = 'Unknown';run; The value for the variable JOBCODE is: JOBCODEchem2 What is the value of the variable DESCRIPTION? A. chem2B. UnknownC. Senior ChemistD. ' ' (missing character value) Answer: B # 문제 수정 - it -> if로 수정 - 전체적으로 보기 편하게 수정 # 문제 풀이 - 데이터..
QUESTION NO: 29The following SAS program is submitted: proc contents data = sashelp.class varnum;run; What does the VARNUM option print? A. a list of variable namesB. the total number of variablesC. a list of the variables in alphabetic orderD. a list of the variables in the order they were created Answer: D # 문제 풀이 - varnum : 데이터셋 안 변수들이 만들어진 순서를 보여준다. - varnum = variable number
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 ..
덤프 문제 풀다보면 자주 나오는 것 중 하나가 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 ..