VB_Script Algorithm
VB_Script Algorithm
Aim:
Algorithm:
1. Start
3. End
Algorithm:
1. Start
6. Show the result using a message box: "The sum is: [sum]"
7. End
Algorithm:
1. Start
6. End
4: Countdown from 5 to 1
Algorithm:
1. Start
2. Set counter `i = 5`
3. While `i >= 1`
- Decrease `i` by 1
5. End
Result:
Thus,the VB Script program to implement simple programs have been successfully executed and
their outputs verified.
Aim:
Algorithm:
1. Start
4. Set `gradeScale` as an array: ["F", "E", "D", "C", "B", "A", "S"]
5. **For** each subject `i` from 0 to 4:
`average = total / 5`
7. Based on the average, determine the grade `index` from (0 to 6 ) using if,elseif and else
statements.
10.End
Result:
Thus,the VB Script program to implement student grade calculation using array have been
successfully executed and it' s outputs verified.
Aim:
Algorithm:
1. Start
5. End
Result:
Thus,the VB Script program to implement Email Validator using function have been successfully
executed and it' s outputs verified.
Aim:
Algorithm:
1. Start
9. End
Result:
Thus,the VB Script program to implement Password Strength Checker Using String have been
successfully executed and it' s outputs verified.