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

Assignment-Questions

Uploaded by

Masum Alom
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Assignment-Questions

Uploaded by

Masum Alom
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Assignment on Multimedia and Web Engineering

1. Explain coding techniques used in multimedia. Discuss any two compression techniques.
2. Discuss some multimedia application on World Wide Web. Give a short note on multi-talk and
multi-cast file transfer.
3. Discuss different types of multimedia networks.

4. Write the HTML command to create a button in a form with the caption “Click Me”.
5. Identify the errors in the following HTML code. Also write the correct code.
<OL TYPE= “a” START= “f”>
6. Write the HTML code to generate a Web Page in the format given below-
• Title of the page should be “Handmade Cards”.
• Background color should be “Pink”.
• Text style of the main heading should be “Arial Bold” and color should be red.
• Image used is “cards.jpg”.
• Table in the center of the webpage and should have a 3 pixel thick border of color green and
the spacing between cell content and border is 10 pixels.
• Use the concept of nested lists for creating the specified lists.
• The bottom image (link.jpg) and the text “Personalize the Card” are links to another page
“person.html”.
7. Discuss about a cookie. Write the PHP code to set a cookie named “car” and value “BMW”. The
cookie should expire after two days. Also Display the value stored in $_COOKIE .

8. Write the output of the given code:

<?php
$sum=0;
for($a=1; $a<=8; $a +=2)
$sum = $sum + $a;
echo($sum);
echo("<BR>");
echo($a);
?>
9. Name the built-in functions to be used in the following situations:

i. To remove backslash from a string.


ii. To return number of days in a month for specified year.
10. Write the code to display a form as shown below along with the javascript code to achieve the
specified task. User should be able to enter the number of calls and the total amount payable gets
displayed when he/she presses “calculate” button.

The total amount payable will be calculated based on the following rate list:
• Tk. 1.00 per call for the 1st 100 calls
• Tk. 1.20 per call for the next 100 calls
• Tk. 1.50 per call for the next 50 calls
• Tk. 2.00 per call for more than 250 calls
11. Explain Javascript conditional operator with the help of an example.
12. Write the code using do while loop without effecting the output:
<script language="javascript">
var prod, b;
prod=1;
for(b=1;b<=10;b+=3) {
document.write(b);
prod=prod + b*b;
}
document.write(“the final prod is” & prod);
13. Describe the role of a tester in web application. Explain the various characteristics of web
application.
14. Explain how servlets are important in developing web application. Discuss with example.
15. Write short notes on:
a) Client side technology
b) Middleware technologies
16. University is planning to provide web space for each student, where student can create his/her
own web page, access necessary information, email and other applications. Consider the student's
requirements related to this project, specify web engineering team, requirement specification,
necessary architecture, user interface (please do not specify/write any code).
17. Define the term Software as a Services (SaaS). Explain the characteristics and benefits of SaaS.
18. Differentiate between traditional web applications and Ajax applications.
19. Discuss how SEO improves your website traffic. Explain with proper reasons and coding
examples.
20. Define JSON. Briefly explain how you convert a string to a JSON object. Consider the following
information about a student (The information include Student ID, Name, Department, Semester
and year of joining).
i) Create an object literal.
ii) Write a JSON code for the above information.

21. Describe the method for accessing XML data from your application.
22. Explain with proper example about n-Tier architecture for web application.
23. Discuss how to mitigate the risk of weak authentication and session management in web
application.
24. Write the AJAX code to handle all browsers, including IE5 and IE6.
25. Differentiate between Get and Post method for a web-based application. Write a simple code to
explain the same.

You might also like