7월달, 앞으로의 계획 + 망한 것 같은 인터뷰
공부해야 할 것들 Database (LinkedIn Learning: Programming Foundations Database), MySQL, PostgreSQL 공부Rest API, API Design 공부Solution Engineer (SQL, DS/DA-related technologies, HTML, CSS, JavaScript, API Design, MySQL, MongoDB) Product Reliability Engineer OA (creating product health metrics and automated alerts, fixing product bugs, streamlining operational tasks, and developing and documenting strateg..
[C++] Lecture 3. Variables and Data Types
Number Systems n bits이 있으면 2^n 개의 data를 나타낼 수 있음 e.g.) 8 bits: data range는 0 부터 2^8-1 = 255, 총 256개 Digits Bytes Data Range 8 1 0~255 16 2 0~65,535 32 4 0~2^32-1 = 4,294,967,295 64 8 0~2^64-1 Binary number system (base = 2, 1개의 bit으로 하나의 value를 나타냄, 1, 2) Octal number system (base = 8, 3개의 bit으로 하나의 value를 나타냄, 0-7) Decimal number system (base = 10) Hexadecimal number system (base = 16, 4개의 bit으..