Saved Bookmarks
| 1. |
Answer the following questions based on ASP:Use the following script to answer the questions that follow:<!- - Start the script - - ><%DIM AA = 10DisplaySubSub DisplaySubShowB = 20response.write("Displaying "&b&"<br>")ShowEND SUBSUB ShowA = A + 3response.write("Showing "&a&"<br>")END SUB%>(i) How many subroutines are used in the above code snippet? Name them.(ii) What will be the output of above asp code? |
|
Answer» (i) There are 2 subroutines viz.DisplaySub and Show (ii) Showing 13 Displaying 20 Showing 16 |
|