Web Technology Slip 24Write a java script code to accept a number from user and write a function to calculate sum of all odd digits of that number.Answer : <html> <body> <script> function saurabh() { var a=0; str = document.getElementById('a').value; var sum=0; for(a=0; a<=str; a++) { if(a%2!=0) { sum=sum+a; } } alert(sum); } </script> <input id="a"> <button onclick="saurabh()">click</button> </body> </html> CopyWrite html code to display following list. (use internal CSS to format the list) <!DOCTYPE html> <html> <dl>i. Arts</dl> <ul> <li>BA</li> <li>MA</li> </ul> <dl>ii.Commerce</dl> <ul> <li>Bcom</li> <li>Mcom</li> </ul> <dl>iii.Science</dl> <ul> <li>B.Sc.</li> <li>M.SC.</li> <ul> </body> </html> Copy
No comments:
Post a Comment