Q1. Question1: (Covers Block 1)
- (a)) Explain the features of the following technologies: Content Networks, Social Media and Web Services. How are these technologies useful to you? (300 words)
- (b) (i)) Create an online admission form for an Institute using HTML. The form should ask for the following information: The Name of the candidate; Mother's Name; Subject (Choose only one Subject from a drop-down list containing CS-01, CS-02, CS-03 and CS-04); Fee of the subject; Have you registered for a subject earlier? (Yes/No); Your Educational Background (to be entered in text area); A SUBMIT button (300 words)
- (b) (ii)) Create an external CSS file for this form. This CSS file should select the font size of 16-point italics for all the labels; font colour should be Blue for the headings and dark green for the normal text. The background colour of the form should be light yellow. (300 words)
- (b) (iii)) Write JavaScript code to validate if any of the field of the form is not filled. (300 words)
- (c) (i)) The headings of the table must be in 14-point Bold, and all other content should be in 12-point Times Roman font. (300 words)
- (c) (ii)) The table heading should be in a different shade. The data rows of the table should have alternate light yellow and light green colour shades. The background of the table should be light blue. (300 words)
- (c) (iii)) The font of the ordered list should be "Arial" and the font size should be 12 points. The background colour of the list should be light blue. (300 words)
- (c) (iv)) At the time of the viva, you should demonstrate how changes in CSS can change the display. You must submit the HTML and CSS code and the screenshots of the pages in a browser window. (300 words)
- (d)) A University maintains the list of Books in its library using XML. Every Book is allotted a unique book code, which should be used as an attribute in the XML document. In addition, the following information is stored about the Books: Title of the book, Author(s) (minimum 1 and maximum 3), year of publication, and publisher. Create an XML document containing information about five Books. Also, create the DTD to verify the XML document created by you. (300 words)
- (e)) Write JavaScript code that displays the text "The Power of JavaScript is Dynamism". When you bring the mouse pointer over this text on the screen, it changes to “This is a Demonstration of Dynamism". You may use event handling to perform the action as stated above. Make suitable assumptions, if any. Submit the code. You should demonstrate this code at the time of the viva.