<% 'the value of variable grade was called for it to be stored in a new variable response.write"

" g = request.querystring("grade") response.write"Your score is " + g + " " 'the value of g will be analyzed to determine wether he/she passed if g >= 57 then 'this will be the result if the value of g is greater than 57 response.write"Congratulations! you have passed the exam your grade is " elseif g < 57 then 'this will be the result if the value of g is lesser than 57 response.write"you failed the exam your grade is : " end if %> <% 'the value of varible grade will be called and stored in variable g' g = request.querystring("grade") 'the value of g will be analyze to determine the equivalent of its grade' if g >= 75 then 'this will be the result if the value of g is greater than 75' response.write"A" elseif g >= 60 AND g < 75 then 'this will be the result if the value of g is greater than and equal to 60 and lesser than 75' response.write"B" elseif g >= 45 AND g < 60 then 'this will be the result if the value of g is greater than and equal to 45 and lesser than 60' response.write"C" elseif g < 45 then 'this will be the result if the value of g is lesser than 45' response.write"F" end if response.write"

" %>


<% 'the value of flower was called to be stored in variable f' f = request.querystring("flower") 'a case condition was made to created and store the prices of the flowers that is present the shop' response.write"

" select case f case "Rose" 'this will be the result if the value of f is rose' response.write f + " cost $2.50

" case "Daisy" 'this will be the result if the value of f is daisy' response.write f + " cost $1.25

" case "Orchid" 'this will be the result if the value of f is orchid' response.write f + " cost $1.50

" case else 'this will be the result if the value of f didn't match to the flowers that are available response.write " There is no such flower in our shop

" end select %>