📖 Samacheer Kalvi · 11th TN - English Medium · Computer Applications · Page 364poem

Tamil

Chapter 5: CHAPTER 11 · Computer Applications

Tamil Tamil is a Dravidian language predominantly sopken by the Tamil people of India and SriLankan Moors, Burghers, Douglas, and Chindians. Tamil is an official language of two countries: Sri Lanka and Singapore. It has official status in the Indian state of Tamil Nadu and the Indian Union Territory of Puducherry. It is used as one of the languages of educatiooon in Malaysia, along with English, Malay and Mandarin. Tamil is spoken by significant minorities in the four other south Indian states of Kerala, Karnataka, Andhra Pradesh and Telangana and the Union Territory of the andaman and Nicobar Islands. It is one of the 22 scheduled languages of India. Computer Application Practical.indd 358 12/11/2021 1:46:50 AM 359 CA7 - DISPLAY TEXT CA-7 Create a webpage using JavaScript to display the following text. Welcome to JavaScript State Council of Educational Research and Training (SCERT), Tamilnadu, Chennai. Coding <html> <head> <title> Display text using JavaScript </title> </head> <body align=center> <p> <script> document.write ("<h1 align=center>Welcome to JavaScript <br>"); document.write ("State Council of Educational Research and Training (SCERT),<br>"); document.write ("Tamilnadu, Chennai. </h1>"); </script> </p> </body> </html> Output Welcome to JavaScript State Council of Educational Research and Training (SCERT), Tamilnadu, Chennai. CA8 – MULTIPLICATION TABLE CA-8 Create a webpage using JavaScript to display multiplication table by prompting number of rows and columns. Coding <html> <head> <title>Multiplication Table</title> <script type="text/javascript"> var rows = prompt("How many rows for your multiplication table?"); var cols = prompt("How many columns for your multiplication table?"); Computer Application Practical.indd 359 12/11/2021 1:46:50 AM 360 if(rows == "" || rows == null) rows = 10; if(cols== "" || cols== null) cols = 10; createTable(rows, cols); function createTable(rows, cols) { var j=1; var output ="<table border='1' width='500' cellspacing='0'cellpadding='5'>"; for(i=1;i<=rows;i++) { output = output + "<tr>"; while(j<=cols) { CA9 - DISPLAY WEEKDAYS IN WORDS CA-9 Create a webpage using JavaScript to display Weekday in words by getting input as a number using switch. output = output + "<td>" + i*j + "</ td>"; j = j+1; } output = output + "</tr>"; j = 1; } output = output + "</table>"; document.write(output); } </script> </head>

Related topics

Have a question about this topic?

Get an AI answer grounded in your actual textbook — with the exact page reference.

Ask AI about this topic →