मराठी

Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 5 - HTML- III: Audio, Video and Forms [Latest edition]

Advertisements

Chapters

Unit I

   Chapter 1: Internet Basics

   Chapter 2: Internet Services and Mobile Technologies

   Chapter *: Case Study Based Questions Unit I: Networking

Unit II

   Chapter 3: HTML- I: Basic HTML Elements

   Chapter 4: HTML- II: Images, Links and Tables

▶ 5: HTML- III: Audio, Video and Forms

   Chapter 6: Cascading Style Sheets (CSS)

   Chapter *: Case Study Based Questions Unit II: HTML

Unit III

   Chapter 7: Cyberethics

   Chapter *: Case Study Based Questions Unit III: Cyber Ethics

   Chapter #: Assertion and Reasoning Questions

Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 5 - HTML- III: Audio, Video and Forms - Shaalaa.com
Advertisements

Solutions for Chapter 5: HTML- III: Audio, Video and Forms

Below listed, you can find solutions for Chapter 5 of CBSE Sumita Arora for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १०.


Assisted PracticeAssignment
Assisted Practice [Pages 228 - 231]

Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० 5 HTML- III: Audio, Video and Forms Assisted Practice [Pages 228 - 231]

Section A: Objective Type Questions

1.Page 228

Which of the following is/are not valid tag(s) for inserting audio files in an HTML page?

  • embed

  • audio

  • sound

  • music

2.Page 228

Which of the following is/are not valid tag(s) for inserting video files in an HTML pages?

  • embed

  • video

  • movie

  • VID

3.Page 228

Which are the ways to add an audio file in a web page?

  • Linking via <A>

  • Embedding via <EMBED>

  • Embedding via <VIDEO>

  • All of these

4.Page 228

Which are the ways to add a video file in a web page?

  • Linking via <A>

  • Embedding via <EMBED>

  • Embedding via <VIDEO>

  • All of these

5.Page 228

Any tag allowed inside a <body> tag is allowed inside a <form> tag.

  • True

  • False

6.Page 228

A form has two required attributes. These are:

  • Method and Action

  • Get and Post

  • Start and Stop

  • Begin and End

7.Page 228

The tag has several kinds of controls which are dictated by the ______ attribute.

  • SRC

  • value

  • name

  • type

8.Page 228

It is possible to set the width of a text by specifying a ______ attribute.

  • limit

  • size

  • value

  • maxlength

9.Page 228

Which of the following tags will clear the contents of the form?

  • <INPUT TYPE="CLEAR" VALUE="Clear the form">
  • <INPUT TYPE="SUBMIT" VALUE="Clear the form">
  • <INPUT TYPE="RESET" VALUE="Clear the form">
  • <INPUT TYPE="BUTTON" VALUE= "Clear the form">
10.Page 229

Consider the following form control in an HTML form:

☆ Male
☆ Female

Now choose the correct line of code for the above:

  • <input type = "radio" name= "Gender" value= “male">Male<br>
    <input type = "radio" name= "Gender" value= "female">Female<br>
  • <input type = "radiobutton" name = "Gender" value= "male">Male<br>
    <input type = "radiobutton” name = "Gender" value= "female”>Female<br>
  • <input type = "radio", name = "Gender">< value= "male">Male
    <input type = "radio”, name = "Gender">< value= “female”>Female
  • <input type = "radio" name= "Gender"value= "male"><br>
    <input type = "radio" name= "Gender" value = "female"><br>
11.Page 229

A developer can restrict the values accepted in a text field by specifying a ______ attribute.

  • size

  • maxlength

  • value

  • You cannot restrict text values using HTML

12.Page 229

You can mask the input typed into a text field by specifying an <input> tag as ______.

  • password

  • secure

  • invisible

  • hidden

13.Page 229

Tag to create password field in HTML document:

  • <password>

  • <input>

  • <pwd>

  • <pword>

14.Page 229

HTML provides an attribute for the <input> tag that allows you to hide data with some designated character to make it secure.

  • True

  • False

15.Page 229

Which of the following tag is used to define options in a drop-down selection list?

  • <select>

  • <list>

  • <dropdown>

  • <option>

16.Page 229

Which of the following restricts a user to one selection?

  • checkbox

  • optionbox

  • radio button

  • drop down list

17.Page 229

You can pre-select a radio button by utilizing a ______ attribute.

  • select

  • choice

  • checked

  • marked

18.Page 229

If you want to display a list of 200 countries which control should you use:

  • radio button

  • checkbox

  • select list

  • slide widget

SECTION B: Theoretical Questions

1.Page 229

In a webpage, an audio file is embedded using element as per following code. But when HTML page is opened in Chrome browser, nothing is shown. What could be the possible reason?

<audio src="beyonce.mp3" >
   Your browser does not support
   AUDIO element.
</audio>
2. (i)Page 229

What is the similarity between text box control and text area control?

2. (ii)Page 229

What is the difference between text box control and text area control?

3.Page 230

Differentiate check box and radio button.

4.Page 230

How is a password text box different from ordinary text box?

5.Page 230

How is form data processed when the form is submitted?

6.Page 230

Create a form like the one shown.

SECTION C: Application Oriented Problems (Summative Assessment)

1.Page 231

In the table below, in left column you will find some web form screenshots and in right column some HTML code. Match the code of right column with the appropriate screenshot in the left column.

(a) 1.
Type here <input type="text" name="username">
(b) 2.
<textarea name="comment">Type here</textarea>
(c) 3.
<select name="day">
   <option value="Friday" selected>Friday</option>
   <option value="Saturday">Saturday</option>
   <option value="Sunday">Sunday</option>
</select>
(d) 4.
<input type="checkbox" name="day" value="Friday" checked> Friday
<input type="checkbox" name="day" value="Saturday"> Saturday
<input type="checkbox" name="day" value="Sunday"> Sunday
(e) 5.
<input type="radio" name="day" value="Friday" checked> Friday
<input type="radio" name="day" value="Saturday"> Saturday
<input type="radio" name="day" value="Sunday"> Sunday
2.Page 231

Given a form as shown below. Write code to get a form equivalent to this:

Assignment [Pages 233 - 235]

Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० 5 HTML- III: Audio, Video and Forms Assignment [Pages 233 - 235]

Type A: Theoretical Questions

1. (i)Page 233

Name some popular audio formats.

1. (ii)Page 233

Name some popular video formats.

2. (i)Page 233

Name the tags that can be used to insert audio files in a webpage.

3.Page 233

What character is displayed on the password forms when the user inputs characters?

  • a random character

  • a ‘+’ character

  • an asterisk

  • a dot

4.Page 233

What attribute is used for radio buttons?

  • radiobutton

  • radiob

  • radio

  • optionbutton

5.Page 233

What attributes are valid for textarea input?

  • just name

  • name, columns and rows

  • name and rows

  • columns and rows

6.Page 233

What attributes can be used with the SELECT form?

  • name and multiple

  • name, multiple, rows and cols

  • name, multiple and size

  • multiple and size

7.Page 233

Is the size attribute valid for the submit button?

  • Yes

  • No

8.Page 233

The two most important attributes of a form are ______.

  • Id and action

  • Class and method

  • Action and method

  • method and id

9.Page 233

A label’s for attribute should match the input’s ______.

  • type

  • id

  • name

  • size

10.Page 233

Creates blank text field, but shows the text as asterisks.

  • Type="text"

  • Type="hidden"

  • Type="password"

  • Type="null"

11.Page 233

Method attribute will always post data into the browser.

  • True

  • False

12.Page 233

Checkbox buttons let users select one or more of a particular set of choices.

  • True

  • False

13.Page 233

<input type="submit" name="submit" id="submit" /> creates a reset button.

  • True

  • False

14.Page 233

What are forms?

15.Page 233

What do you understand by controls in forms?

16.Page 233

Name different control types supported by HTML forms.

17. (i)Page 233

Write the tag to define the following:

A text box

17. (ii)Page 233

Write the tag to define the following:

A text area

17. (iii)Page 233

Write the tag to define the following:

A radio button

17. (iv)Page 233

Write the tag to define the following:

A check box

17. (v)Page 233

Write the tag to define the following:

A Password box

17. (vi)Page 233

Write the tag to define the following:

A pop up box

17. (vii)Page 233

Write the tag to define the following:

Submit button

17. (viii)Page 233

Write the tag to define the following:

A Label

18.Page 233

Write HTML code to produce following controls:

Grade: A B C
Subjects: English                   Maths
  Computers   Accounts
  Economics    
  Business Studies    
19. (i)Page 233

Write HTML code to produce this control:

a text box

19. (ii)Page 233

Write HTML code to produce this control:

a text area with 10 rows and 30 columns

19. (iii)Page 233

Write HTML code to produce this control:

A password text box

19. (iv)Page 233

Write HTML code to produce this control:

A pop up box to choose class from it

Type B: Application Oriented Questions

1.Page 234

Create a form as given below by using different Form tags and attributes.

(Hint: Also use Pre, Input, Select, Option tags for this)

2.Page 234

Create a webpage that receives pizza orders through a web form as shown below:

Formative Assessment

1.Page 235

Consider the following code fragment and determine how this code fragment would create a form element, i.e., draw how its output would appear in the browser.

<input type="text" size="3" maxlength="3">
<input type="text" size="2" maxlength="2">
<input type="text" size="4" maxlength="4">

Solutions for 5: HTML- III: Audio, Video and Forms

Assisted PracticeAssignment
Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 5 - HTML- III: Audio, Video and Forms - Shaalaa.com

Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 5 - HTML- III: Audio, Video and Forms

Shaalaa.com has the CBSE Mathematics कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० CBSE solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. Sumita Arora solutions for Mathematics कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० CBSE 5 (HTML- III: Audio, Video and Forms) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.

Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. Sumita Arora textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.

Concepts covered in कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 5 HTML- III: Audio, Video and Forms are .

Using Sumita Arora कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० solutions HTML- III: Audio, Video and Forms exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in Sumita Arora Solutions are essential questions that can be asked in the final exam. Maximum CBSE कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० students prefer Sumita Arora Textbook Solutions to score more in exams.

Get the free view of Chapter 5, HTML- III: Audio, Video and Forms कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० additional questions for Mathematics कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० CBSE, and you can use Shaalaa.com to keep it handy for your exam preparation.

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×