VirtualDever
close
프로필 배경
프로필 로고

VirtualDever

  • Root (739)
    • ComputerScience (52)
      • Coding Test (27)
      • Algorithm (2)
      • Math (3)
      • Physics (3)
    • Language (62)
      • C# (18)
      • C (2)
      • C++ (1)
      • English (29)
      • Python (5)
      • Lua (4)
    • Engine (120)
      • DirectX (2)
      • Unity (84)
      • Unreal (15)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (30)
    • DevLog (108)
    • LifeLog (130)
      • book (126)
      • Review (4)
      • Workout (26)
      • Finance (20)
    • SideProjects (33)
      • N Job (33)
      • Youtuber (2)
  • 홈
  • 태그
  • 방명록
사이버대학교 소프트웨어공학과 수강신청할 트랙 : 데이터베이스, 인공지능

사이버대학교 소프트웨어공학과 수강신청할 트랙 : 데이터베이스, 인공지능

사이버대학교를 1학년부터 다니기로 해서 기본등록금을 결제하였다. 지난 사이버대학교는 3학년부터 수업을 들었는데, 아무래도 이 사이버대학교는 교수님들이 직접 개발해 본 것인지 의문이 들었다. 그래서 수업에 그렇게 만족할 수 없었다. 다른 사이버대학교 또한 소프트웨어 공학과가 있어서 수강 신청할 날이 다가오고 있다. 소프트웨어공학과 내에서도 커리큘럼이 크게 세 가지로 나뉘었다. 공식 홈페이지에서 가져온 이미지인데 나는 데이터베이스, 인공지능 위주로 수업을 들어보려고 한다. 내가 해보지 않은 영역에 도전하는 것이다. 정말 기초부터 하나씩 한다고 생각하고 4년 동안 열심히 해서 졸업장을 취득하는 것이 목표이다. 출처 : https://www.cuk.edu/cms/FrCon/index.do?MENU_ID=3350..

  • format_list_bulleted ComputerScience
  • · 2024. 1. 21.
  • textsms

책 [알고리즘 with 수학] 좋아하는 문구

알고리즘을 사용해서 여러 문제 해결을 하려면, 단순하게 수학을 공부하거나 여러 알고리즘을 이해하는 것만으로는 부족합니다. 그럼 무엇이 필요할까요? 바로 해결 방법을 생각하는 힘 자체가 필요합니다.

  • format_list_bulleted ComputerScience/Algorithm
  • · 2023. 11. 17.
  • textsms

[zdnet] 우리가 알던 프로그래밍의 종말, 개발자의 새 역할은

https://zdnet.co.kr/view/?no=20221229101930&fbclid=IwAR3Z6gRNMyzakfQLeZNdC1mcFNOZ2rG6dSCIZ09ZjQwjBSMHL1gMf55UgT4 우리가 알던 프로그래밍의 종말, 개발자의 새 역할은 인공지능(AI)은 점점 더 많은 소프트웨어 개발 작업을 수행하고 있다. 개발자는 앞으로 코딩 도구보다 교육 모델을 더 많이 사용하게 될 것으로 보인다. 새 시대의 개발자는 ... zdnet.co.kr AI는 이제 선택이 아닌 필수. 개발자라는 직업도 AI 개발과 친숙해야 살아남는 시대가 될 것인가.

  • format_list_bulleted ComputerScience
  • · 2022. 12. 30.
  • textsms

C# 백준 4101번: 크냐?

using System; class Program { static void Main(string[] args) { List listA = new List(); List listB = new List(); while (true) { string stringInput = Console.ReadLine(); string[] stringInputArray = stringInput.Split(' ', StringSplitOptions.None); int A = Convert.ToInt32(stringInputArray[0]); int B = Convert.ToInt32(stringInputArray[1]); if (A == 0 && B == 0) { break; } listA.Add(A); listB.Add(B)..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 20.
  • textsms

C# 백준 2738번: 행렬 덧셈

using System; class Program { static void Main(string[] args) { string stringN = Console.ReadLine(); string[] stringArray = stringN.Split(' ', StringSplitOptions.None); int Y = Convert.ToInt32(stringArray[0]); int X = Convert.ToInt32(stringArray[1]); int[,] matrixA = new int[Y,X]; for (int i = 0; i < Y; i++) { string s = Console.ReadLine(); string[] sArray = s.Split(' ', StringSplitOptions.None)..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 20.
  • textsms

C# 백준 10872번: 팩토리얼

using System; class Program { static void Main(string[] args) { string stringN = Console.ReadLine(); int intN = Convert.ToInt32(stringN); int factorial = 1; for (int i = 1; i

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 20.
  • textsms
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • ···
  • 9
  • navigate_next
공지사항
  • 게임 외주 개발과 게임 개발 과외 합니다.
  • Vritual Dever의 주인장은 누구입니까
전체 카테고리
  • Root (739)
    • ComputerScience (52)
      • Coding Test (27)
      • Algorithm (2)
      • Math (3)
      • Physics (3)
    • Language (62)
      • C# (18)
      • C (2)
      • C++ (1)
      • English (29)
      • Python (5)
      • Lua (4)
    • Engine (120)
      • DirectX (2)
      • Unity (84)
      • Unreal (15)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (30)
    • DevLog (108)
    • LifeLog (130)
      • book (126)
      • Review (4)
      • Workout (26)
      • Finance (20)
    • SideProjects (33)
      • N Job (33)
      • Youtuber (2)
최근 글
인기 글
최근 댓글
태그
  • #ㅂㅗ
  • #1
  • #부
  • #ㅗ
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바