Saturday, December 16, 2006
ISE2 exam questions
Section A: MCQ
All chapters including E-Learning
Section B:
4 questions
1. Unit 5: Security Architecture and Models
     Things to take note of:
        1. TCSEC, ITSEC and CC
        2. First 2 and last 2 levels of CC
        3. Types of levels and the relations between levels(opps seems like I treated rationale behind CC to rationale behind each level...)
2. Unit 8: Physical Security Control
     Things to take note of:
        1. Threats
        2. Controls
3. Units 4,7,9: Security Management, Law, Investigations, and Ethics, Operations Security
     Things to take note of:
        Unit 4: Quantitative and Qualitative risk analysis(never come out)
        Unit 7: Laws will not be included, more on ethics
        Unit 9: Types of security controls
4. Units 6,13: Business Continuity Planning and Diaster Recovery Planning, Application Development Security
     Things to take note of:
        Unit 6: Types of alternate sites(never come out), methods of testing DRP
        Unit 13: SDLC process, Security activities
Special pages to take note of: 91, 98, 130, 132, 153, 167, 300
PS: Hope i did not miss anything out...
All chapters including E-Learning
Section B:
4 questions
1. Unit 5: Security Architecture and Models
     Things to take note of:
        1. TCSEC, ITSEC and CC
        2. First 2 and last 2 levels of CC
        3. Types of levels and the relations between levels(opps seems like I treated rationale behind CC to rationale behind each level...)
2. Unit 8: Physical Security Control
     Things to take note of:
        1. Threats
        2. Controls
3. Units 4,7,9: Security Management, Law, Investigations, and Ethics, Operations Security
     Things to take note of:
        Unit 4: Quantitative and Qualitative risk analysis(never come out)
        Unit 7: Laws will not be included, more on ethics
        Unit 9: Types of security controls
4. Units 6,13: Business Continuity Planning and Diaster Recovery Planning, Application Development Security
     Things to take note of:
        Unit 6: Types of alternate sites(never come out), methods of testing DRP
        Unit 13: SDLC process, Security activities
Special pages to take note of: 91, 98, 130, 132, 153, 167, 300
PS: Hope i did not miss anything out...
Friday, December 15, 2006
Yay! First post!(WCD)
Some things to take note of for WCD assignment:
To make an input box which cannot be changed, use the following:
(input value="anything you like" readonly) Note: use pointy brackets
Example:
To truncate a number, use Math.round
To truncate to 2 decimals, use Math.round(value*100)/100
For example, if value is 10.567
value*100=1056.7
Math.round will make a decimal into nearest whole number.
Thus Math.round(1056.7) will make 1057
Math.round(value*100)/100=1057/100=10.57
Example:
The codes can be seen near top in the source codes. Please TRY to copy with understanding.:p
PS: Dun tell lecturers that it is posted here.(Or later everyone lesser marks =X)
To make an input box which cannot be changed, use the following:
(input value="anything you like" readonly) Note: use pointy brackets
Example:
To truncate a number, use Math.round
To truncate to 2 decimals, use Math.round(value*100)/100
For example, if value is 10.567
value*100=1056.7
Math.round will make a decimal into nearest whole number.
Thus Math.round(1056.7) will make 1057
Math.round(value*100)/100=1057/100=10.57
Example:
The codes can be seen near top in the source codes. Please TRY to copy with understanding.:p
PS: Dun tell lecturers that it is posted here.(Or later everyone lesser marks =X)