혹 아시는분 있으면 해석이라도 달아주세요.

 

 1. The bold new approach worked like a magic.

 2. Thirty-five percent is a large proportion of income spent on housing.

 3. The truck is moving slowly up the steep incline.

 4. Each supervisor must undergo a series of tests to determine their ability to

    work under pressure.

 5. We're going to advertise the position to get qualified applicants.

 6. The contents of the document astonished the secretary.

 7. If we wish to provide superior services to our customers, we must do more         than our competitors.

 8. The price is cheaper but the product is inferior.

 9. U. S. computer manufacturers decided to assemble components abroad.

10. The city doesn't possess the financial ability to build a new library.

11. The damaged shipment arrived in fragments.

12. Erase the temporary files on the laptop before you turn it in to the office.

13. After we modify this rough draft, we will start on the final version.

14. We need to revise the article and make it short and to the point.

15. Hope we can mend our differences and continue to work together.

16. He proposed an amendment to remove $600,000 from the budget.

17. Dr. Peterson was asked to chair the committee.

18. Ms. Williams was elected chairperson of the executive committee.

19. As new model cars arrived, they slashed prices on the older ones.

20 Please curtail your spending until the new budget is set.

21. The machinery in the factory is inspected every week.

22. He reviewed the company profile before applying for the job.

23. He deliberately postponed his response.

24. Clip these papers and hand them to Director Hudson, please.

25. The steady upward movement of interest rates in the past two months isn't

    likely to continue.

26. Some ecologists warn that shrimp farming threatens the biological balance of

    Chesapeake Bay.

27. The fare seemed reasonable to the ticket agent.

28. We must devise a marketing strategy for rural areas.

29. Soak the leaves for one hour.

30. She now relies on her daughter-in-law to bathe and feed her.


'2007년1학기 > 영어I' 카테고리의 다른 글

영어1 문법들  (28) 2007.04.26
영어1 해석본  (43) 2007.04.19
영어 완전기초  (32) 2007.03.19
영어 1 퀴즈자료  (28) 2007.03.18
by cranix 2007. 3. 18. 16:04
퀴즈자료

'2007년1학기 > 영어I' 카테고리의 다른 글

영어1 문법들  (28) 2007.04.26
영어1 해석본  (43) 2007.04.19
영어 완전기초  (32) 2007.03.19
영어 해석  (21) 2007.03.18
by cranix 2007. 3. 18. 15:56

- const 변수가 포인터변수의 앞에오면 포인터가 가리키는 변수의 상수화 한다.

int a=10;
const int* p = &a;
*p = 30;  // Error!
a = 30;   // OK!


- const 가 포인터변수의 뒤에오면 포인터변수 자체를 상수화 한다.
int a=10;
int b=20;
int* const p = &a;
p=&b;  // Error!
*p=30;  // OK!


- 함수포인터
  --> 함수명 자체가 함수포인터 이다.
  --> 함수포인터는 아래와같이 선언한다.
void (*fPtr)(void);
  --> 이런 형태는 아래와같이 포인터를 할당할수 있다.
int Add(void);

fPtr = Add;

- Void 형 포인터
  --> 아무런 형태가 없는 포인터
  --> 사용하기위해서는 아래와같이 형 변환을 해야한다.

int main(void)
{
int n=10;
void *vp = &n ; // void 포인터 선언 및 초기화
*((int*) vp) = 20; // n 값을 변경하기 위해서 int 형 포인터로 형 변환
. . . . .

- 포인터의 포인터 (**)
  --> 포인터의 포인터값을 가르키는 포인터


- malloc 와 free
  --> c++ 로 오면서 new 와 delete 로 바꼈음.
 

'2007년1학기 > C++프로그래밍' 카테고리의 다른 글

C++ 에서 달라진점  (21) 2007.03.21
C++ 강의노트 3장  (40) 2007.03.21
C++ 2강 자료  (683) 2007.03.14
C++프로그래밍  (29) 2007.03.09
강의1  (52) 2007.03.07
by cranix 2007. 3. 14. 14:21
2강 pdf 자료

'2007년1학기 > C++프로그래밍' 카테고리의 다른 글

C++ 에서 달라진점  (21) 2007.03.21
C++ 강의노트 3장  (40) 2007.03.21
C++ 2강 정리  (19) 2007.03.14
C++프로그래밍  (29) 2007.03.09
강의1  (52) 2007.03.07
by cranix 2007. 3. 14. 14:01
1. sqlplus 실행

2. 스크립트 실행명령

SQL> @d:\cranix\table_exam.sql
Building demonstration tables.  Please wait.
Demonstration table build is complete


3. 테이블 보는 명령어
SQL> select * from tab;
TNAME                          TABTYPE  CLUSTERID
------------------------------ ------- ----------
DEPT                           TABLE
EMP                            TABLE
BONUS                          TABLE
STUDENT                        TABLE
BIN$EDD2reKoSqmnD2XYsAJmMw==$0 TABLE
PROFESSOR                      TABLE
DEPARTMENT                     TABLE
SALGRADE                       TABLE

4. 테이블 구조확인
SQL> desc student
 이름                                      널?      유형
 ----------------------------------------- -------- ----------------------------
 STUDNO                                             NUMBER(5)
 NAME                                               VARCHAR2(10)
 USERID                                             VARCHAR2(10)
 GRADE                                              VARCHAR2(1)
 IDNUM                                              VARCHAR2(13)
 BIRTHDATE                                          DATE
 TEL                                                VARCHAR2(13)
 HEIGHT                                             NUMBER(5,2)
 WEIGHT                                             NUMBER(5,2)
 DEPTNO                                             NUMBER(4)
 PROFNO                                             NUMBER(4)


5. 중복행 제거
SQL> select deptno from student;
    DEPTNO
----------
       101
       201
       101
       101
       201
       102
       101
       102
       102
       101
       101
    DEPTNO
----------
       102
       101
       201
       201
       101
16 개의 행이 선택되었습니다.
SQL> SELECT DISTINCT deptno
  2  FROM student;
    DEPTNO
----------
       201
       102
       101

6. 컬럼에 별명부여
SQL> SELECT dname dept_name, deptno AS DN
  2  FROM department;
DEPT_NAME                DN
---------------- ----------
컴퓨터공학과            101
멀티미디어학과          102
전자공학과              201
기계공학과              202
정보미디어학부          100
메카트로닉스학부        200
공과대학                 10
7 개의 행이 선택되었습니다.
SQL> SELECT dname "Department Name", deptno "부서"
  2  FROM department;
Department Name        부서
---------------- ----------
컴퓨터공학과            101
멀티미디어학과          102
전자공학과              201
기계공학과              202
정보미디어학부          100
메카트로닉스학부        200
공과대학                 10
7 개의 행이 선택되었습니다.

'2007년1학기 > DB프로그래밍' 카테고리의 다른 글

DB 프로그래밍  (708) 2007.04.03
DB 플밍 과제  (55) 2007.04.03
DB 플밍 과제  (42) 2007.03.27
DB 프로그래밍 3장 SQLPLUS  (799) 2007.03.20
DB 프로그래밍  (33) 2007.03.13
by cranix 2007. 3. 13. 11:15

DB 프로그래밍

교과목명: 데이터베이스 프로그래밍,

교과목번호: INA330

강의 시간: 화요일 (09:00 ~ 13:00) , 화요일(14:00~18:00)

강의실: A203

 

교수: 민준기

연구실 : A302

연락처: 041-560-1494

Email: jkmin@kut.ac.kr

특이사항 :
  - 9:30 분에 수업시작
  - http://webhard.kut.ac.kr/ 을 사용한다. ID: jkmin
   - 숙제제출시 메일제목 : [DBP01]HW[N],학번,이름
   - 숙제제출시 파일제목 :
파일 1개 일 경우 : 제목과 같은형태.확장자
파일 2개 이상일 경우 : zip으로 압축하여 제목과 같은 형태.zip

   - 기한 : 그다음주 월요일
   - 과제는 김유두 학생에게 메일로 보낸다.
      --> 김유두 : kydman@kut.ac.kr


 

'2007년1학기 > DB프로그래밍' 카테고리의 다른 글

DB 프로그래밍  (708) 2007.04.03
DB 플밍 과제  (55) 2007.04.03
DB 플밍 과제  (42) 2007.03.27
DB 프로그래밍 3장 SQLPLUS  (799) 2007.03.20
DB 프로그래밍1  (719) 2007.03.13
by cranix 2007. 3. 13. 10:36
교수님 : 조재수
강의실 : 4B302
조교님 : 권민혁 (멜:mugerc@gmail.com,폰:010-6256-7459)
조교님홈 : http://pllab.kut.ac.kr/~batman/wiki.php
교수님홈 : http://ime.kut.ac.kr/jaesoo
교재 : C++ 프로그래밍
기타사항 :
  - 교재를 사도되고 안사도됨
  - 과제는 조교님홈으로 제출
  - 실습할때는 모든걸끝냈어도 적어도 1시간은 있어야함

'2007년1학기 > C++프로그래밍' 카테고리의 다른 글

C++ 에서 달라진점  (21) 2007.03.21
C++ 강의노트 3장  (40) 2007.03.21
C++ 2강 정리  (19) 2007.03.14
C++ 2강 자료  (683) 2007.03.14
강의1  (52) 2007.03.07
by cranix 2007. 3. 9. 15:49
웹 프로그래밍을 수강하는 3분반 학생들에게 모두 교수님 서버의 계정을 만들었습니다.

계정 아이디 : u학번 (예 : u2003135142)
계정 비밀번호 : ******

학부생들께서는 각자 자신의 계정에 접속하여서 자신이 쓸 비밀번호로 수정을 하고
자신의 계정으로 과제를 제출하시면 됩니다.

http 접속 경로 : http://icl.kut.ac.kr:8088/~계정아이디
( 예 : http://icl.kut.ac.kr:8088/~atin84 )


-계정 비밀번호 수정방법-
1. 텔넷 접속 프로그램 " putty "를 다운(포털에서 검색하면 나옵니다.)
2. putty 실행
3. HostName : icl.kut.ac.kr
    Protocol : SSH
    실행
4. 실행되면 자신의 아이디와 비밀번호를 입력하여 접속합니다.
5. "passwd" 명령어 실행 후 패스워드 변경
5. 변경 후 "exit" 명령어를 통해 종료


과제 제출은 자신의 계정에 index페이지에 과제를 링크해서 웹에서 확인할 수 있게 해주시면 됩니다.
과제 링크의 이름은 다음과 같은 형태로 해주시면 됩니다.

" [과목명]-[차수]-[이름]-[학번]-[분반]
  예: 웹프로그래밍-1차-홍길동-2005111222-3분반 "

'2007년1학기 > 웹프로그래밍' 카테고리의 다른 글

웹플밍 CSS  (21) 2007.05.04
웹프로그래밍  (36) 2007.03.09
by cranix 2007. 3. 9. 15:39
교수님 : 허주현
강의실 : 월(3311),목(3307)
싸이주소 : idomath
기타주의사항 :
  - 숙제는 타이핑하지말고 손으로 써서 내시오
  - 영어공부!!

'2007년1학기 > 이산수학' 카테고리의 다른 글

조합론의 이해  (24) 2007.04.05
by cranix 2007. 3. 9. 15:32
교수님 : 박승철
EMAIL : scpark@kut.ac.kr
교재 : 인터넷중심의 데이터 통신과 컴퓨터 네트워크
by cranix 2007. 3. 9. 15:30
| 1 2 3 4 5 |