Split View: 개발자를 위한 금융·경제·경영 필수 개념 30선
개발자를 위한 금융·경제·경영 필수 개념 30선

들어가며
"연봉 5,000만원과 RSU 200주 중 뭐가 나은가요?"
이 질문에 자신 있게 답할 수 있나요? 개발자는 기술에는 강하지만, 돈의 언어에는 취약한 경우가 많습니다. 연봉 협상, 이직 판단, 투자 결정, 스타트업 이해 — 모두 금융 리터러시가 필요합니다.
이 글은 개발자 관점에서 금융·경제·경영 핵심 개념 30가지를 정리합니다.
Part 1: 💰 투자의 기본
1. 복리 (Compound Interest) — "코드의 재귀"
"복리는 세상에서 가장 강력한 힘이다" — 아인슈타인
def compound_interest(principal, rate, years):
"""복리 계산 — 재귀적으로 불어나는 돈"""
return principal * (1 + rate) ** years
# 월 100만원, 연 7% 수익률, 20년
monthly = 1_000_000
annual_rate = 0.07
years = 20
# 단리: 100만 × 12 × 20 = 2.4억
simple = monthly * 12 * years
# 복리: 약 5.2억 (2배 이상!)
compound = sum(
monthly * (1 + annual_rate/12) ** (years*12 - i)
for i in range(years * 12)
)
print(f"단리: {simple:,.0f}원") # 240,000,000원
print(f"복리: {compound:,.0f}원") # ~520,000,000원
2. ROI (Return on Investment) — "성능 벤치마크"
def roi(gain, cost):
"""투자 수익률 = (이익 - 비용) / 비용 × 100%"""
return (gain - cost) / cost * 100
# GPU 서버 투자
server_cost = 5_000_000 # RTX 5090 서버 500만원
annual_revenue = 2_000_000 # AI API 서비스 연 매출 200만원
print(f"1년 ROI: {roi(annual_revenue, server_cost):.1f}%") # -60%
print(f"3년 ROI: {roi(annual_revenue * 3, server_cost):.1f}%") # 20%
3. 기회비용 (Opportunity Cost) — "트레이드오프"
선택 A: 현재 회사 잔류 (연봉 6,000만원, 안정적)
선택 B: 이직 (연봉 8,000만원, 리스크 있음)
기회비용: A를 선택하면 B의 추가 2,000만원을 포기
B를 선택하면 A의 안정성을 포기
→ 개발자 비유: CPU vs Memory 트레이드오프와 동일한 구조
4. 인플레이션 — "성능 저하"
def real_value(nominal, inflation_rate, years):
"""인플레이션 고려한 실질 가치"""
return nominal / (1 + inflation_rate) ** years
salary_2026 = 60_000_000
inflation = 0.03 # 연 3%
# 10년 후 6,000만원의 실질 가치
real = real_value(salary_2026, inflation, 10)
print(f"2036년 6,000만원의 실질 가치: {real:,.0f}원")
# → 약 4,465만원 (25% 가치 하락!)
5. 72의 법칙
투자금이 2배가 되는 데 걸리는 시간:
72 ÷ 수익률(%) = 소요 년수
예: 연 7% 수익률 → 72 ÷ 7 ≈ 10.3년
예: 연 3% 인플레이션 → 72 ÷ 3 = 24년 (돈 가치 반토막)
Part 2: 📊 주식의 언어
6. PER (Price to Earnings Ratio) — "가성비"
def per(stock_price, earnings_per_share):
"""주가수익비율 — 낮을수록 저평가"""
return stock_price / earnings_per_share
# 삼성전자
samsung_per = per(70_000, 5_000) # PER = 14
# NVIDIA
nvidia_per = per(130, 3.5) # PER = 37
# PER 14: 현재 이익 기준 14년이면 투자금 회수
# PER 37: 시장이 NVIDIA의 미래 성장을 높게 평가
| 지표 | 의미 | 좋은 범위 |
|---|---|---|
| PER | 주가/주당순이익 | 10~20 (업종별 상이) |
| PBR | 주가/주당순자산 | 1 미만이면 자산가치 이하 |
| ROE | 순이익/자기자본 | 15% 이상이면 우수 |
| EPS | 주당순이익 | 높을수록 좋음 |
| 배당수익률 | 배당금/주가 | 3~5% 안정적 |
7. 시가총액 (Market Cap) — "프로젝트 규모"
market_cap = stock_price * total_shares
# Apple: $3.5T = "K8s 클러스터 전체"
# 스타트업: $10M = "단일 Pod"
8. ETF vs 개별주 — "프레임워크 vs 직접 구현"
ETF (예: S&P 500):
→ Next.js 같은 프레임워크 — 분산 투자, 안정적, 시장 평균 수익
→ 연평균 수익률: ~10%
개별주:
→ 바닐라 JS로 직접 구현 — 고수익 가능하나 리스크 높음
→ NVIDIA 2023~2025: +800%, 하지만 개별 종목은 -90%도 가능
9. 채권 (Bond) — "예적금의 상위 호환"
정부 채권: 안전, 낮은 수익 (국채 3~4%)
회사 채권: 중간 리스크, 중간 수익 (5~8%)
하이일드: 높은 리스크, 높은 수익 (10%+)
→ 개발자 비유:
국채 = 검증된 라이브러리
회사채 = 인기 오픈소스
하이일드 = 스타 1개짜리 GitHub 레포
10. 마진콜 (Margin Call) — "OOM Kill"
레버리지 투자: 빌린 돈으로 투자
→ 2배 레버리지: 수익도 2배, 손실도 2배
→ 자산 가치가 일정 수준 이하로 떨어지면 강제 청산
마진콜 = OOM Killer
메모리(자본)가 부족해지면 커널(증권사)이 프로세스(포지션)를 강제 종료
Part 3: 🏢 경영의 프레임워크
11. 매출 vs 이익 — "트래픽 vs 전환율"
revenue = 100_000_000 # 매출 1억
cogs = 40_000_000 # 매출원가 4천만
gross_profit = revenue - cogs # 매출총이익 6천만
operating_expenses = 30_000_000 # 운영비 3천만
operating_profit = gross_profit - operating_expenses # 영업이익 3천만
# 영업이익률 = 30% → 건강한 소프트웨어 회사
margin = operating_profit / revenue * 100
12. 현금흐름 (Cash Flow) — "실시간 모니터링"
매출 100억이어도 현금이 없으면 망합니다.
수익 ≠ 현금
→ 매출 인식: 계약 체결 시점 (미래 돈)
→ 현금 유입: 실제 입금 시점 (지금 돈)
개발자 비유: 약속된 API 응답 vs 실제 수신된 데이터
13. 손익분기점 (BEP) — "임계점"
def break_even_point(fixed_costs, price_per_unit, variable_cost_per_unit):
"""손익분기점 = 고정비 / (단가 - 변동비)"""
return fixed_costs / (price_per_unit - variable_cost_per_unit)
# SaaS 서비스
fixed = 50_000_000 # 서버비+인건비 5천만/월
price = 50_000 # 구독료 5만원/월
variable = 5_000 # 유저당 서버비 5천원
bep = break_even_point(fixed, price, variable)
print(f"손익분기: {bep:.0f}명") # 1,111명
14. DCF (Discounted Cash Flow) — "NPV 계산"
def dcf(cash_flows, discount_rate):
"""미래 현금흐름의 현재 가치"""
return sum(
cf / (1 + discount_rate) ** (i + 1)
for i, cf in enumerate(cash_flows)
)
# 스타트업 밸류에이션
future_cash = [0, 0, 10_000_000, 50_000_000, 100_000_000] # 5년
discount = 0.15 # 15% 할인율 (리스크 반영)
value = dcf(future_cash, discount)
print(f"기업 가치: {value:,.0f}원") # ~8,800만원
15. 스톡옵션/RSU — "개발자가 꼭 알아야 할 보상"
스톡옵션 (Stock Option):
→ 미래에 정해진 가격으로 주식을 살 권리
→ 행사가 10,000원, 현재가 50,000원 → 이익 40,000원/주
→ 4년 베스팅, 1년 클리프가 일반적
RSU (Restricted Stock Unit):
→ 일정 기간 후 무상으로 주식 지급
→ "행사가 0원짜리 스톡옵션"
→ 대기업에서 주로 사용 (Google, Meta 등)
개발자 판단 기준:
1. 회사가 상장/인수될 가능성은?
2. 현재 밸류에이션 대비 행사가는?
3. 4년 간 회사에 머물 의향은?
4. 현금 보상 대비 기대 수익은?
Part 4: 🌍 경제 기초
16~20: 거시경제
| 개념 | 개발자 비유 | 핵심 |
|---|---|---|
| GDP | 시스템 총 처리량 | 국가 경제 규모 |
| 금리 | API Rate Limit | 높으면 대출↓ 저축↑ |
| 환율 | 인코딩 변환 | 원/달러, 수출입 영향 |
| 무역수지 | 네트워크 I/O 밸런스 | 수출-수입 |
| 실업률 | CPU idle% | 5% 이하면 완전고용 |
21~25: 투자 전략
| 개념 | 설명 |
|---|---|
| 분산투자 | 포트폴리오 = 마이크로서비스 (한 곳에 올인 X) |
| 달러 코스트 평균법 | 정기 정액 투자 → 타이밍 리스크 제거 |
| 리밸런싱 | 주기적으로 자산 비율 조정 (Auto-scaling) |
| 비상금 | 6개월 생활비 현금 보유 (재해 복구 버퍼) |
| 세금 최적화 | ISA, 연금저축, 퇴직연금 활용 |
26~30: 스타트업/비즈니스
| 개념 | 설명 |
|---|---|
| PMF (Product-Market Fit) | 사용자가 진짜 원하는 것과 제품의 일치 |
| MRR/ARR | 월간/연간 반복 매출 — SaaS의 핵심 지표 |
| CAC/LTV | 고객 획득 비용 vs 생애 가치 — LTV/CAC 3배 이상이면 건강 |
| 런웨이 | 현금이 바닥나기까지 남은 개월 수 |
| 밸류에이션 | 기업 가치 평가 (매출 배수, DCF, 비교법) |
개발자를 위한 실전 체크리스트
[ ] 비상금 6개월분 확보
[ ] 연금저축/IRP로 세액공제 받기 (연 최대 115만원)
[ ] 월급의 20%+ 자동 투자 (ETF 적립)
[ ] 연봉 협상 전 시장 조사 (wanted, 점핏)
[ ] 스톡옵션/RSU 조건 꼼꼼히 확인
[ ] 퇴직금 중간정산 vs 퇴직 시 수령 비교
[ ] 건강보험료, 국민연금 계산해보기
시리즈 로드맵
| 편 | 주제 | 상태 |
|---|---|---|
| 1편 | 금융·경제·경영 필수 개념 30선 (이 글) | ✅ |
| 2편 | 개발자의 주식 투자 실전 가이드 | 🔜 |
| 3편 | 연봉 협상의 기술 — 데이터로 무장하기 | 🔜 |
| 4편 | 스타트업 vs 대기업 — 보상 구조 완전 분석 | 🔜 |
| 5편 | Python으로 만드는 개인 자산 관리 시스템 | 🔜 |
📝 퀴즈 — 금융 리터러시 (클릭해서 확인!)
Q1. 연 7% 수익률로 투자하면 원금이 2배가 되는 데 약 몇 년 걸리나? ||72 ÷ 7 ≈ 약 10.3년 (72의 법칙)||
Q2. PER이 20이라는 것은 무슨 의미인가? ||현재 이익 수준 기준으로 투자금을 회수하는 데 20년 걸린다는 뜻. 시장이 미래 성장을 어느 정도 기대한다는 의미||
Q3. 연봉 6,000만원이 10년 후에도 같은 가치를 유지하려면 인플레이션 3% 기준 얼마여야 하나? ||6,000만 × (1.03)^10 ≈ 약 8,063만원||
Q4. LTV/CAC 비율이 3 미만이면 어떤 문제가 있나? ||고객 한 명에서 벌어들이는 수익(LTV)이 획득 비용(CAC)의 3배 미만이면 사업이 지속 불가능 — 마케팅 효율이 낮거나 이탈률이 높음||
Q5. 스톡옵션의 "1년 클리프"란? ||입사 후 1년이 지나야 첫 베스팅이 시작되는 조건. 1년 이내 퇴사하면 스톡옵션 0주||
Q6. DCF에서 할인율을 높이면 기업 가치는 어떻게 되나? ||낮아진다 — 할인율이 높다는 것은 리스크가 크다는 의미이므로 미래 현금흐름의 현재 가치가 감소||
Q7. ETF의 장점을 3가지 말하라. ||1) 분산투자 (개별 종목 리스크 감소) 2) 낮은 수수료 3) 전문 지식 없이도 시장 평균 수익률 달성 가능||
Q8. 런웨이가 6개월인 스타트업이 의미하는 바는? ||현재 현금 보유량과 월간 소진율(burn rate) 기준으로 6개월 후 자금이 바닥남 — 추가 펀딩 또는 수익화 필요||
30 Essential Finance, Economics, and Business Concepts for Developers
- Introduction
- Part 1: Investment Basics
- Part 2: The Language of Stocks
- Part 3: Business Frameworks
- Part 4: Economic Fundamentals
- Practical Checklist for Developers
- Series Roadmap
- Quiz

Introduction
"Which is better: a 50 million KRW salary or 200 RSU shares?"
Can you confidently answer this question? Developers are strong in technology but often weak in the language of money. Salary negotiations, job-switching decisions, investment choices, understanding startups -- all require financial literacy.
This article organizes 30 essential finance, economics, and business concepts from a developer's perspective.
Part 1: Investment Basics
1. Compound Interest -- "Recursion in Code"
"Compound interest is the most powerful force in the world" -- Einstein
def compound_interest(principal, rate, years):
"""Compound interest -- money that grows recursively"""
return principal * (1 + rate) ** years
# 1 million KRW/month, 7% annual return, 20 years
monthly = 1_000_000
annual_rate = 0.07
years = 20
# Simple interest: 1M x 12 x 20 = 240M KRW
simple = monthly * 12 * years
# Compound interest: ~520M KRW (more than double!)
compound = sum(
monthly * (1 + annual_rate/12) ** (years*12 - i)
for i in range(years * 12)
)
print(f"Simple: {simple:,.0f} KRW") # 240,000,000 KRW
print(f"Compound: {compound:,.0f} KRW") # ~520,000,000 KRW
2. ROI (Return on Investment) -- "Performance Benchmark"
def roi(gain, cost):
"""ROI = (Gain - Cost) / Cost x 100%"""
return (gain - cost) / cost * 100
# GPU server investment
server_cost = 5_000_000 # RTX 5090 server 5M KRW
annual_revenue = 2_000_000 # AI API service annual revenue 2M KRW
print(f"1-year ROI: {roi(annual_revenue, server_cost):.1f}%") # -60%
print(f"3-year ROI: {roi(annual_revenue * 3, server_cost):.1f}%") # 20%
3. Opportunity Cost -- "Trade-offs"
Option A: Stay at current company (60M KRW salary, stable)
Option B: Switch jobs (80M KRW salary, risky)
Opportunity cost: Choosing A means giving up the extra 20M KRW from B
Choosing B means giving up the stability of A
-> Developer analogy: Same structure as CPU vs Memory trade-offs
4. Inflation -- "Performance Degradation"
def real_value(nominal, inflation_rate, years):
"""Real value considering inflation"""
return nominal / (1 + inflation_rate) ** years
salary_2026 = 60_000_000
inflation = 0.03 # 3% annually
# Real value of 60M KRW in 10 years
real = real_value(salary_2026, inflation, 10)
print(f"Real value of 60M KRW in 2036: {real:,.0f} KRW")
# -> ~44.65M KRW (25% value loss!)
5. The Rule of 72
Time for an investment to double:
72 / Rate(%) = Years required
Example: 7% annual return -> 72 / 7 = ~10.3 years
Example: 3% annual inflation -> 72 / 3 = 24 years (money loses half its value)
Part 2: The Language of Stocks
6. PER (Price to Earnings Ratio) -- "Value for Money"
def per(stock_price, earnings_per_share):
"""Price-to-Earnings Ratio -- lower means undervalued"""
return stock_price / earnings_per_share
# Samsung Electronics
samsung_per = per(70_000, 5_000) # PER = 14
# NVIDIA
nvidia_per = per(130, 3.5) # PER = 37
# PER 14: It takes 14 years to recoup investment at current earnings
# PER 37: The market values NVIDIA's future growth highly
| Metric | Meaning | Good Range |
|---|---|---|
| PER | Price / EPS | 10-20 (varies by industry) |
| PBR | Price / Book Value | Below 1 means below asset value |
| ROE | Net Income / Equity | Above 15% is excellent |
| EPS | Earnings Per Share | Higher is better |
| Dividend Yield | Dividend / Stock Price | 3-5% is stable |
7. Market Cap -- "Project Scale"
market_cap = stock_price * total_shares
# Apple: $3.5T = "Entire K8s cluster"
# Startup: $10M = "Single Pod"
8. ETF vs Individual Stocks -- "Framework vs Building From Scratch"
ETF (e.g., S&P 500):
-> Like a framework such as Next.js -- diversified, stable, market-average returns
-> Average annual return: ~10%
Individual stocks:
-> Like building with vanilla JS -- high returns possible but high risk
-> NVIDIA 2023-2025: +800%, but individual stocks can also go -90%
9. Bonds -- "Upgraded Savings Accounts"
Government bonds: Safe, low returns (3-4%)
Corporate bonds: Medium risk, medium returns (5-8%)
High yield: High risk, high returns (10%+)
-> Developer analogy:
Government bonds = Well-tested libraries
Corporate bonds = Popular open source projects
High yield = GitHub repos with 1 star
10. Margin Call -- "OOM Kill"
Leveraged investing: Investing with borrowed money
-> 2x leverage: Gains 2x, losses 2x
-> Forced liquidation when asset value drops below a threshold
Margin Call = OOM Killer
When memory (capital) runs low, the kernel (brokerage) force-kills the process (position)
Part 3: Business Frameworks
11. Revenue vs Profit -- "Traffic vs Conversion Rate"
revenue = 100_000_000 # Revenue 100M KRW
cogs = 40_000_000 # Cost of goods sold 40M KRW
gross_profit = revenue - cogs # Gross profit 60M KRW
operating_expenses = 30_000_000 # Operating expenses 30M KRW
operating_profit = gross_profit - operating_expenses # Operating profit 30M KRW
# Operating margin = 30% -> Healthy software company
margin = operating_profit / revenue * 100
12. Cash Flow -- "Real-time Monitoring"
A company can go bankrupt with 10 billion KRW in revenue if it has no cash.
Revenue is not equal to Cash
-> Revenue recognition: At contract signing (future money)
-> Cash inflow: At actual deposit (present money)
Developer analogy: Promised API response vs actually received data
13. Break-Even Point (BEP) -- "Threshold"
def break_even_point(fixed_costs, price_per_unit, variable_cost_per_unit):
"""BEP = Fixed Costs / (Price - Variable Cost)"""
return fixed_costs / (price_per_unit - variable_cost_per_unit)
# SaaS service
fixed = 50_000_000 # Server + labor costs 50M KRW/month
price = 50_000 # Subscription 50K KRW/month
variable = 5_000 # Server cost per user 5K KRW
bep = break_even_point(fixed, price, variable)
print(f"Break-even: {bep:.0f} users") # 1,111 users
14. DCF (Discounted Cash Flow) -- "NPV Calculation"
def dcf(cash_flows, discount_rate):
"""Present value of future cash flows"""
return sum(
cf / (1 + discount_rate) ** (i + 1)
for i, cf in enumerate(cash_flows)
)
# Startup valuation
future_cash = [0, 0, 10_000_000, 50_000_000, 100_000_000] # 5 years
discount = 0.15 # 15% discount rate (reflecting risk)
value = dcf(future_cash, discount)
print(f"Company value: {value:,.0f} KRW") # ~88M KRW
15. Stock Options / RSU -- "Compensation Developers Must Know"
Stock Options:
-> The right to buy shares at a set price in the future
-> Exercise price 10,000 KRW, current price 50,000 KRW -> profit of 40,000 KRW/share
-> 4-year vesting with 1-year cliff is standard
RSU (Restricted Stock Unit):
-> Shares granted for free after a set period
-> "Stock options with exercise price of 0"
-> Mainly used by large companies (Google, Meta, etc.)
Developer decision criteria:
1. What is the likelihood of the company going public or being acquired?
2. What is the exercise price relative to the current valuation?
3. Are you willing to stay at the company for 4 years?
4. What is the expected return compared to cash compensation?
Part 4: Economic Fundamentals
16-20: Macroeconomics
| Concept | Developer Analogy | Key Point |
|---|---|---|
| GDP | Total system throughput | National economic scale |
| Interest Rate | API Rate Limit | Higher means less borrowing, more savings |
| Exchange Rate | Encoding conversion | KRW/USD, affects imports and exports |
| Trade Balance | Network I/O balance | Exports minus imports |
| Unemployment | CPU idle% | Below 5% is full employment |
21-25: Investment Strategies
| Concept | Description |
|---|---|
| Diversification | Portfolio = Microservices (don't go all-in on one thing) |
| Dollar Cost Averaging | Regular fixed-amount investing -> removes timing risk |
| Rebalancing | Periodically adjust asset ratios (Auto-scaling) |
| Emergency Fund | Keep 6 months of living expenses in cash (disaster recovery buffer) |
| Tax Optimization | Leverage ISA, pension savings, and retirement pension plans |
26-30: Startups / Business
| Concept | Description |
|---|---|
| PMF (Product-Market Fit) | Alignment between what users actually want and the product |
| MRR/ARR | Monthly/Annual Recurring Revenue -- core SaaS metric |
| CAC/LTV | Customer Acquisition Cost vs Lifetime Value -- healthy when LTV/CAC is 3x or more |
| Runway | Months remaining until cash runs out |
| Valuation | Company value assessment (revenue multiples, DCF, comparables) |
Practical Checklist for Developers
[ ] Secure 6 months of emergency funds
[ ] Get tax deductions through pension savings/IRP (up to ~1.15M KRW/year)
[ ] Auto-invest 20%+ of salary (ETF contributions)
[ ] Research the market before salary negotiations
[ ] Carefully review stock option/RSU terms
[ ] Compare mid-career severance settlement vs end-of-employment payout
[ ] Calculate health insurance and national pension contributions
Series Roadmap
| Part | Topic | Status |
|---|---|---|
| 1 | 30 Essential Finance, Economics & Business Concepts (this article) | Done |
| 2 | Stock Investing Practical Guide for Developers | Coming Soon |
| 3 | The Art of Salary Negotiation -- Armed with Data | Coming Soon |
| 4 | Startup vs Big Company -- Complete Compensation Analysis | Coming Soon |
| 5 | Building a Personal Asset Management System with Python | Coming Soon |
Quiz -- Financial Literacy (Click to check!)
Q1. Approximately how many years does it take for principal to double at a 7% annual return? ||72 / 7 = approximately 10.3 years (Rule of 72)||
Q2. What does a PER of 20 mean? ||At current earnings levels, it takes 20 years to recoup the investment. It means the market expects a certain degree of future growth.||
Q3. How much should a 60M KRW salary be in 10 years to maintain the same value at 3% inflation? ||60M x (1.03)^10 = approximately 80.63M KRW||
Q4. What problem arises when the LTV/CAC ratio is below 3? ||When the revenue from a single customer (LTV) is less than 3x the acquisition cost (CAC), the business is unsustainable -- either marketing efficiency is low or churn rate is high.||
Q5. What is a "1-year cliff" for stock options? ||A condition where vesting only begins after 1 year of employment. Leaving before 1 year means 0 stock options.||
Q6. What happens to company value when the discount rate in DCF increases? ||It decreases -- a higher discount rate means higher risk, so the present value of future cash flows decreases.||
Q7. Name 3 advantages of ETFs. ||1) Diversification (reduces individual stock risk) 2) Low fees 3) Achieves market-average returns without requiring expertise||
Q8. What does it mean for a startup to have a 6-month runway? ||Based on current cash reserves and monthly burn rate, the company will run out of funds in 6 months -- additional funding or monetization is needed.||
Quiz
Q1: What is the main topic covered in "30 Essential Finance, Economics, and Business Concepts
for Developers"?
30 essential finance, economics, and business concepts every developer should know for salary negotiations, stock investing, and understanding startups. From ROI to DCF, PER, and margin calls -- explained with code and analogies.
Q2: What is Part 1: Investment Basics?
- Compound Interest -- "Recursion in Code" 2. ROI (Return on Investment) -- "Performance Benchmark" 3. Opportunity Cost -- "Trade-offs" 4. Inflation -- "Performance Degradation" 5. The Rule of 72
Q3: Explain the core concept of Part 3: Business Frameworks.
11. Revenue vs Profit -- "Traffic vs Conversion Rate" 12. Cash Flow -- "Real-time Monitoring" 13.
Break-Even Point (BEP) -- "Threshold" 14. DCF (Discounted Cash Flow) -- "NPV Calculation" 15.
Stock Options / RSU -- "Compensation Developers Must Know"
Q4: What are the key aspects of Part 4: Economic Fundamentals?
16-20: Macroeconomics 21-25: Investment Strategies 26-30: Startups / Business
Q5: How does Series Roadmap work?
Q1. Approximately how many years does it take for principal to double at a 7% annual return? Q2.
What does a PER of 20 mean? Q3. How much should a 60M KRW salary be in 10 years to maintain the
same value at 3% inflation? Q4. What problem arises when the LTV/CAC ratio is below 3?