Saturday, March 24, 2012

MIMP for 6th sem CE/IT Midsem @GIT

devharsh@live.in
facebook.com/devharsh

Computer Graphics :
  1. Ellipse Algorithm
  2. B-spline curve is included in 'CG' MSE syllabus..so pass this message to all 6th CE/IT students

Theory Of Computation :
  1. Context Free Grammar
  2. Chomsky Normal Form

Information Security :
  1. Attacks addressed by message author
  2. Requirements/Properties of Hash Function

System Programming :
  1. Parsing id + id * id with grammar
    E --> E+T | T
    T --> T*F | F
    F --> P
    P --> id
  2. LL(1) with grammar
    E --> TE'
    E' --> +TE' | e
    T --> VT'
    T' --> *VT' | e
    V --> id