Introduction1. Imperative languages는 폰 노이만 아키텍쳐의 추상 개념임 - Memory - Processer 2. 변수들은 속성들로 특징화 되어있음 - type을 디자인 하기 위해서 scope, lifetime, type checking, initialization, and type compatibility를 고려 Names1. 고려사항 : 대소문자 구분, 예약어 or keywords 인지 아닌지 (예약어 ⊃ keywords) 예외) goto(Java)- 키워드 x- 예약어(reserved word) o goto(python)- 키워드 x- 예약어 x 2. 길이가 너무 짧으면, 함축적인 의미를 가질 수 없음 3. Special characters - PHP : 모..