0% found this document useful (0 votes)
64 views5 pages

IP QuestionBank 23 24

This document contains a question bank for the subject "Internet Programming" for the academic year 2023-2024 at Vivekanand Education Society’s Institute of Technology. It includes descriptive, multiple choice, and true/false questions covering topics like URL, HTTP, front-end development, JavaScript, PHP, and more. The questions are divided into modules corresponding to the topics covered in the course. Faculty in charge of the subject are also listed.

Uploaded by

Rishi Kokil
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)
64 views5 pages

IP QuestionBank 23 24

This document contains a question bank for the subject "Internet Programming" for the academic year 2023-2024 at Vivekanand Education Society’s Institute of Technology. It includes descriptive, multiple choice, and true/false questions covering topics like URL, HTTP, front-end development, JavaScript, PHP, and more. The questions are divided into modules corresponding to the topics covered in the course. Faculty in charge of the subject are also listed.

Uploaded by

Rishi Kokil
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/ 5

Vivekanand Education Society’s Institute of Technology

Department Of Computer Engineering

Question Bank
Academic year 2023-2024(Odd Sem)

Subject Code: CSDO501 Year/Semester: TE / SEM V

Name of the Subject: INTERNET PROGRAMMING Class: D12A / D12B/ D12C

Faculty Incharge : Mrs. Geocey shejy,Mrs. Prerna Solanke, Mrs. Pallavi Saindane

Descriptive Questions

Module 1
1. What is URL
2. Write a note on HTTP
3. Describe the structure of the HTTP request and response message
4. When a user enters a URL address, into a web browser, assess how the specific document is retrieved from
a web browser?
5. Explain format of URI.
6. Explain web-browser architecture

Module 2: Front End Development

1 Write an external stylesheet and link it with HTML code. The stylesheet should include the following.
● The web page will have the background image “img1.jpg”.
● The table headings will have red background color.
● Background color of alternate paragraphs are different.
● The hyperlinks on the web page will not have underline.

2 Draw and illustrate 3-tier Web Architecture

3 Write HTML5 Code for embedding Audio and Video into HTML Web Page

4 Explain Geo-location and media query with an example in HTML5 and CSS3.

5 Explain different types of CSS selectors with appropriate examples.

6 Write an HTML code to process placement registration form which accepts the student details like name,
address, email-id, contact-number, date of birth, percentage, branch (must be selected using radio button) and
technology-preferred (using checkbox). Write the JavaScript code to validate the following
i. valid email id (“@” and “.”)
ii. all the fields must be filled before submission of the form.
iii. percentage validation is minimum first class (= > 60 %)

7 Explain Window object of Javascript DOM. Write Javascript code to change the background color of a web
page automatically after every 5 seconds.

8 Write code to process online Alumni information for your college. Create forms to get name, address, date of
birth, and email id. Use check boxes for taking hobbies and radio buttons for selecting branch. Write
JavaScript code to validate the following:
i. User has filled all the fields prior to form submission
ii. Valid email-id (with ‘@’ and ‘.’)
iii. Age validation using DOB (>=22 years)

9 Write a script to display message “GOOD MORNING” or “GOOD DAY” immediately after page get loaded

10 Write a javascript code to add new HTML element to existing web page.

11 State and explain the tag which can be used to download a file when clicked on a given hyperlink 12.

12 Write an HTML-CSS code for showing following animation (Observe the animation mentioned)

13 Write an HTML code for the form given below

14 Write a Javascript program to find biggest of three numbers using Math object. (Use button and text box )

15 Write a Javascript code to change an image when mouse hover over the image and get the previous image
when mouse moves out of the image

16 Write a JavaScript function to get the month name from a particular date

17 What are different ways of creating functions in JavaScript. How is it different from arrow function.

18 Write a Javascript program to change HTML attribute value

Module 3:

1 Explain string functions in PHP.

2 Create a HTML form to accept name (TextField), address (TextArea), gender (Radio), and Country
(DropDown) fields from user, store it into the My SQL database using PHP program

3 Write XML document to describe a CD catalog. Define a suitable DTD for the same. Also display the
list of albums in tabular format using XSL.
5 Explain Session management in PHP

6 Distinguish between echo and print statement in PHP

7 State and explain various types of arrays in PHP

8 Write a PHP program to reverse a number

9 Create an HTML form that accepts Emp_Id, First_Name, Last_Name and Gender from user. Write a
PHP code to store this information into Employee table using MySQL database

10 State the syntax of “foreach loop” in PHP with example

11 State advantages and disadvantages of PHP

12 How are objects created in PHP? Explain using example

13 Explain the concept of static keyword using example

14 Write a PHP program to check if the entered string is palindrome

Multiple choice questions:

Module No. Que Question Option 1 Option 2 Option 3 Option 4


stion
No.

Module 2 1 Correct HTML tag for H6 H1 <heading> <banner>


the largest heading is:

2 Which of the a) Cell b) HTML c) GET requests d) HTTP uses


following statement is padding is not a of HTTP remain port 443.
not true: ? specifies the program in the browser
space ming history.
between the language.
cell content
and its
borders.

3 <noscript> tag in a) Defines an b) Is used c) Helps the web d) None of


HTML alternate for pages to load above.
content for disabling faster.
users that do all scripts
not support when
client-side displayin
scripts. g the web
page.
4 Which of the a) Inline style b) body c) When you d) All of
following statement is sheets are {bg-color define conflicting above.
true for CSS? highest : styles in internal
priority lightblue; and external
stylesheets. } displays stylesheets, none
web page of them is
with blue selected.
color in
backgrou
nd.

5 Which of the a) <link b) c) <body style=” d) Both (b)


following statement rel="styleshe <head> ……”> </body> and (c).
uses external style et" <style>
sheet when displaying type="text/cs ------
the web page? s" </style>
href="mystyl </head>
e.css">

Module 2 1 What data types are a) int, float, b) int , c) int , string d) It has
available in char, string char dynamic
JavaScript? types defined
with keyword
var.

2 If var a) 0 b) NULL c) -1 d) None of


str=”JavaScript” and above.
var position=0 are the
variables in the given
script and
position=str.indexOf(
“e”) is executed what
will be the value of
position?

3 What will be the a) Banana, b) Kiwi, c) Banana, Kiwi, d) Error


output of the Orange, Banana, Orange, Apple,
following JavaScript Apple, Orange, Mango
code? Mango, Kiwi Apple,
<script> Mango
var fruits =
["Banana", "Orange",
"Apple", "Mango"];
function
myFunction()
{
document.getElement
ById("demo").innerH
TML =
fruits.push("Kiwi"); }
</script>
4 When displayed, what a) True b) False c) Error d) None of
will be the output of above
following JavaScript
statement?
Boolean(10 > 9)

5 Which of the a) An HTML b) Mouse c) A link is d) All of


following are valid web page has pointer is clicked. above.
events in JavaScript? finished hovered
loading over an
element
of a web
page.

Module 3 1 What is output of 12 squared 12 “12 Execution


following Code 141 squared= squared=141” error
<? 141
$count=12;
do{
printf("%d
squared=%d<br/>",
$count,
pow($count,2));
} while($count<11);
?>

2 The A) $COOKIE B) C) D)
……………………… $_COOK $SET_COOKIE $ADD_COO
is a superglobal IE KIE
variable that stores
information passed
into the script through
HTTP cookies.

You might also like