0% found this document useful (0 votes)
166 views

HTML & C Lab Qs

The document contains instructions for creating various web pages using HTML tags and formatting elements. It also contains problems to write C programs to perform tasks like calculating factorials, finding averages, manipulating strings, working with arrays and matrices, performing conversions and more. The tasks cover a range of fundamental programming and web development concepts.

Uploaded by

Bhagat Vc
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
166 views

HTML & C Lab Qs

The document contains instructions for creating various web pages using HTML tags and formatting elements. It also contains problems to write C programs to perform tasks like calculating factorials, finding averages, manipulating strings, working with arrays and matrices, performing conversions and more. The tasks cover a range of fundamental programming and web development concepts.

Uploaded by

Bhagat Vc
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

PART A: HTML

1. Design a web page to Show your College and its departments details using
basic text formatting tags(at least 4)
2. Design a web page to show image as link (include two different links)
3. Create a webpage to show photo album (minimum 4 photos)
4. Divide a webpage into 3 parts using frames and include a background image,
table and hyper link in the parts
5. Design a web page to show the product details of a computer, printer and
scanner with images
6. Create a webpage for student registration form(include address, gender(radio
button),qualification(select box),languages known(checkbox))
7. Crete a web page to show details (Fee, Duration etc.,) of courses offered by
your college using hyperlink(give links to navigate to next, previous and home
pages)
8. Create a webpage to show university infrastructure using table tag
9. Show the following table in a webpage

Time
Train Name Source Destination
Arrival Departure

10. Display drinks menu (Hot Drinks and Cool drinks) in restaurant using
definition list.
11. Display web page to show tri color flag using div tag (use primary colors)
12. Design a webpage to display syllabus of your course using list tag.(use ordered,
unordered format as main, sub main and sub- sub main and use numbers
special types of bullets in appropriate places)
13. Create web page to show page link, file link, and external link
14. Design a html page to show the use of i frame
15. Design a webpage using internal style sheet for setting styles to heading, body
and table
16. Design a webpage to show the use of external style sheet
Part B: C Programming

Write programs to do the following:

1. Find the sum of digits and reverse of a number.


2. Find the factorial of a number.
3. Print the reverse of a string using recursion.
4. Find Sin(x)
5. Find Cos(x)
6. Create a pyramid using ‘*’.
7. Find the number of words in a sentence.
8. Perform matrix addition
9. Perform matrix multiplication
10. Perform matrix transpose
11. Find the average of prime numbers in a group of N numbers using function.
12. Find the sum of the series S = 1 + (½)2 + (1/3)3 +.... to 0.0001% accuracy.
13. Create a pattern with the number N.
E.g. N = 39174 Pattern: 3 9 1 7 4
9 1 7 4
1 7 4
7 4
4
14. Display the short form of a string. E.g. Computer Science : CS
15. Find the currency denomination of a given amount.
16. Find the Armstrong numbers within a given range.
17. Check for palindrome string.
18. Check for leap year.
19. Write odd and even numbers into separate files.
20. Base conversion of numbers.
21. Calculate the percentage of marks obtained for N students appeared for
examination in M subjects using array of structures.
22. Design a Scientific Calculator and include any 8 functions
23. Merge two numeric arrays in sorted order.
24. Fill upper triangle with 1, lower triangle with -1 and diagonal elements with 0.
25. Convert an input amount less than 1000 into words.
26. Convert a time in 24 hour clock to a time in 12 hour clock using structure.

You might also like