일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SQLD
- 글로벌리더십학부
- 데이터베이스
- QT
- 묵상
- csee
- CHEMISTRY
- 화학
- 설교
- 웹개발
- SQL
- 찬양
- 예배
- 남재창교수님
- FE
- 혼자공부하는sql
- dbms
- 전산전자공학부
- typeScript
- 프론트엔드
- 유태준교수님
- 한동대학교
- GLS
- Database
- 어노인팅
- 날마다 솟는 샘물
- CCM
- 날솟샘
- Software Engineering
- 일반화학
- Today
- Total
목록한동대학교/25-1 수업 정리 (19)
멈추지 않는 기록
첫 번째 디스커션과제 1: 가장 경험이 많은 팀원이 프로젝트 중간에 떠난다면 어떻게 하겠는가?하나하나 기록하면서 문서화를 진행한다.새로운 팀원을 데려온다.그 사람이 해왔던 일들을 빠르게 파악하고, 남아 있는 인원들에게 역할을 분배한다.Task 1: What would you do if your most experienced team member leaves mid-project?Document everything step by step.Bring in a new team member.Quickly analyze the tasks the departed member was handling and redistribute roles among the remaining team members.과제 2: 우리는 ..
3주차 디스커션 주제 - 1위키백과에는 좋은 분류 체계가 있다.(1) 알고 있는 소프트웨어 프로세스 모델(패러다임)을 나열하라(강의, 인터넷 콘텐츠, 생성형 AI 등에서 얻은 정보). 전체 이름(약어 포함)을 작성하고 간단한 설명(한 문장)을 덧붙여라.Waterfall Model: A traditional software development model that progresses sequentially through phases.Agile Model: A model that emphasizes flexibility through iterative and incremental development.V-Model: A variation of the waterfall model where developmen..
Week02 Discussion 1: Generic vs. Customized software products일반 소프트웨어 제품 대 맞춤형 소프트웨어 제품1) Provide at least three examples of generic products (일반 제품의 예를 세 가지 이상 제공하라.): VScode, Github, Generic AI 2) Provide at least three examples of customized products (맞춤형 제품의 예를 세 가지 이상 제공하라): AI for business, Hospital management system, Hisnet 3) Discuss with your group members why you selected these example..
1. 소프트웨어 개발자 (Software Developer)1) 특징주로 소프트웨어를 설계하고 구현하는 역할을 맡는다.코드를 작성하고, 기능을 개발하며, 사용자 요구 사항에 맞춘 프로그램을 만든다.일반적으로 주어진 요구 사항에 따라 특정 작업에 집중하는 경우가 많다.2) 비유 (주어진 재료로 특정 요리를 만드는 요리사): 소프트웨어 개발자는 마치 요리사와 같다. 주어진 레시피를 따라 특정 요리를 만드는 데 집중하며, 다양한 재료를 혼합하여 맛있는 요리를 완성한다. 주어진 요구 사항에 맞춰 기능을 개발하고, 코드라는 재료를 사용해 프로그램을 만들어낸다. 2. 소프트웨어 엔지니어 (Software Engineer)1) 특징소프트웨어 개발뿐만 아니라 시스템 아키텍처, 설계 및 문제 해결에 더 넓은 관점을 가..
보호되어 있는 글입니다.
작성일 : 240306 (목) HW1 (3points) has been released (HW1(3점)이 출시되었습니다.)I will introduce this in the first offline class!To understand the SE fields breifly, you comapre textbook chapters with topics in top software engineering conferences.Don't spend much time but feel the how SE fileds are wide.Due: 23:59 Mar. 16 SunFill the form and submit: https://forms.gle/nFMoAWnnuv2UtQzc7 첫 번째 오프라인 수업에서 이..

1. Instructor 테이블-- Create Instructor tableCREATE TABLE Instructor ( ID INTEGER PRIMARY KEY, name VARCHAR(50), dept_name VARCHAR(50), salary DECIMAL(10,2));-- Insert data into Instructor tableINSERT INTO Instructor VALUES(10101, 'Srinivasan', 'Comp. Sci.', 65000.00),(12121, 'Wu', 'Finance', 90000.00),(15151, 'Mozart', 'Music', 40000.00),(22222, 'Einstein', 'Physics', 95000.00),(32343..