हिंदी

Sumita Arora solutions for कंप्युटर ऐप्लकैशन [अंग्रेजी] कक्षा १० chapter 6 - Cascading Style Sheets (CSS) [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

▶ 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 6 - Cascading Style Sheets (CSS) - Shaalaa.com
Advertisements

Solutions for Chapter 6: Cascading Style Sheets (CSS)

Below listed, you can find solutions for Chapter 6 of CBSE Sumita Arora for कंप्युटर ऐप्लकैशन [अंग्रेजी] कक्षा १०.


Assisted PracticeAssignment
Assisted Practice [Pages 271 - 273]

Sumita Arora solutions for कंप्युटर ऐप्लकैशन [अंग्रेजी] कक्षा १० 6 Cascading Style Sheets (CSS) Assisted Practice [Pages 271 - 273]

Section A: Objective Type Questions

1.Page 271

Which of the following is not one of the DHTML technology?

  • HTML

  • CSS

  • JavaScript

  • WWW

2.Page 271

The acronym CSS stands for what?

  • Carrot Sytem Style

  • Correlated Styling System

  • Cascading Style Sheets

  • Canvas Styling System

3.Page 271

What property would you use to create space between the element’s border and inner content?

  • margin

  • spacing

  • padding

  • border

4.Page 271

How do you tell the browser you are creating a styling section with an internal style sheet?

  • <style type="css"></style>
  • <class type="css"></class>
  • <class type="text/css"></class>
  • <style type="text/css"></style>
5.Page 271

To reference a style sheet across multiple HTML pages, how would you define your CSS?

  • Inline Style

  • Internal Style Sheet

  • External Style Sheet

  • CSS is meant for only one page

6.Page 271

What is the correct CSS syntax for making all the <span> elements bold?

  • span {text-size:bold}
  • span {font-weight:bold}
  • <span style="font-size:bold">
  • <span style="text-size:bold">
7.Page 271

In the following code snippet, what value is given for the left margin:

margin: 5px 10px 3px 8px;
  • 3px

  • 10px

  • 8px

  • 5px

8.Page 271

What property is used to change the text color of an element?

  • fontcolor:

  • textcolor:

  • color:

  • font-color:

9.Page 271

Which is the correct CSS syntax?

  • {p:color=black(p}
  • p {color: black;}
  • {p;color:black}
  • p:color=black
10.Page 271

What is the correct CSS syntax to change the font name?

  • font-name:

  • font:

  • font-family:

  • fontname:

11.Page 271

Which HTML attribute is used to define inline CSS styles?

  • css

  • style

  • type

  • id

12.Page 271

How do you make each word in a text start with a capital letter?

  • text-transform:capitalize
  • text-transform:uppercase
  • You can’t do that with CSS

  • text:capitalize
13.Page 271

What is the correct CSS syntax for making all the <p> tag’s font size 14px?

  • p {14px}
  • p {font-size: 14px;}
  • p {text-size: 14px;}
  • p {font: 14px;}
14.Page 271

Which CSS property controls the text size?

  • font-height

  • text-size

  • font-size

  • text-style

15.Page 271

How do you insert padding so that it is?

10 pixels at the top
15 pixels at the bottom
5 pixels at the right
10 pixels to the left
  • padding:10px 15px 5px 10px;
  • padding:15px 5px 10px 10px;
  • padding:10px 5px 10px 15px;
  • padding:10px 5px 15px 10px;
16.Page 272

How do you display hyperlinks without an underline?

  • a {decoration:no underline}
  • a {text-decoration:none}
  • a {hyperlink:no underline}
  • a {(text-decoration:no underline}

SECTION B: Theoretical Questions

1.Page 272

What is the difference between a static and dynamic web page?

2.Page 272

What is DHTML?

3.Page 272

What is CSS?

4. (i)Page 272

What is a CSS rule?

4. (ii)Page 272

What are the components of a CSS rule?

4. (iii)Page 272

Give an example of a CSS rule.

5.Page 272

What different types of stylesheets can be created? How are these different?

6.Page 272

Form a CSS code within the <head>....<head> for the following specifications:

Background colour: bluе
For the paragraph,
   font family is Dotum and colour of the text is red
Heading should be in black colour

SECTION C: Application Oriented Problems

1.Page 273

What is wrong with the following CSS definition?

body (color = "black"; )
2.Page 273

Which CSS code would be applied to an element, the one defined within the STYLE element of the page or the one defined within the style property of the element? Take the following code as an example. What would be the size of the font in the DIV element?

<html>
  <head>
    <title>My page</title>
    <style type="text/css">
    div {   font-family: Verdana;
       font-size: 9pt;
        }
    </style>
  </head>
  <body>
    <div style="font-weight: bold; font-size: 12pt;"> My text </div>
  </body>
</html>
3.Page 273

If you want all links and DIV elements use Verdana font, how would you write the shortest CSS code?

4.Page 273

How can you specify that the text of a DIV element should use font Calibri, if it is available, or Arial?

5.Page 273

Can your background image be on a different server? How would you write your CSS code then?

6.Page 273

How would you define a background image which would be displayed filling only the top of the screen?

Assignment [Pages 274 - 275]

Sumita Arora solutions for कंप्युटर ऐप्लकैशन [अंग्रेजी] कक्षा १० 6 Cascading Style Sheets (CSS) Assignment [Pages 274 - 275]

Type A: Theoretical Questions

1.Page 274

Which property is used to change the background color?

  • background-color

  • bgcolor

  • bg-color

  • color

2.Page 274

Which property is used to increase and decrease the text size?

  • font-width

  • font-size

  • text-width

  • text-size

3.Page 274

What would this CSS rule do?

p  {  color:red;
   }
  • Make the background of all paragraphs red.

  • Make the fonts of all paragraphs red.

  • Make all text boxes red.

  • Make the border of all paragraphs red.

4.Page 274

What would this CSS rule do?

h2  {  font-size: 2em;
    }
  • Make fonts in a specific h2 tag double in size.

  • Make fonts in all h2 tags double in size.

  • Make fonts in all h2 tags double in size and italic.

  • Make all fonts that are size 2, empty.

5.Page 274

How do you link an external stylesheet to a page.

  • <link href=’somefile.css’>
  • <link rel=’stylesheet’
    src=’somefile.css’>
  • <script rel=’stylesheet’
    href=’somefile.css’> </script>
  • <link rel=’stylesheet’ href=’somefile.css’>
6.Page 275

Which one of these name and value declarations would not work?

  • margin:20px 00 30%;
  • margin;20px 30%:
  • margin:20px 30%;
  • margin:20px 23px 5% 30px;
7.Page 275

Which of the following CSS types is defined in the header of a Web page and applies to the entire Web page document?

  • Inline

  • Embedded

  • Inbuilt

  • External

8.Page 275

Which of the following type of CSS is coded in the body of the Web page as an attribute of an HTML tag and applies ONLY to the specific element that contains it as an attribute?

  • Inline

  • Embedded

  • Inbuilt

  • External

9.Page 275

Where in an HTML document is the correct place to refer to an external style sheet?

  • In Body section

  • In Head section

  • In a paragraph

  • Top of the document

10.Page 275

Use the CSS ______ property to configure the cellpadding of a table.

11.Page 275

What is the utility of dynamic websites?

12.Page 275

What are some features of dynamic websites?

13. (i)Page 275

What do you understand by Stylesheets?

13. (ii)Page 275

How are Stylesheets useful?

14. (i)Page 275

What is a CSS style rule?

14. (ii)Page 275

How do you define a CSS style rule?

15.Page 275

What are three ways of creating style rules? Give examples of each.

16.Page 275

What is the Cascading order of different style types?

17.Page 275

Where do you place the code to associate a Web page with an external style sheet?

Type B: Application Oriented Questions

1.Page 275

How do you add a background color for all <h1> elements?

2.Page 275

How do you display a border like this?

The top border = 10 pixels
The bottom border = 5 pixels
The left border = 20 pixels
The right border = 1pixel
3.Page 275

How do you make each word in a text start with a capital letter?

4.Page 275

Perform as instructed below.

(a) Create an HTML file namely index.html file with following guidelines:

  • Make sure there are at least 2 paragraphs (<p>) in your HTML file.
  • Use h1, h2 and h3 headings.
  • Use a numbered and a bulleted list.
  • Use a table.
  • At least 4 hyperlinks.

(b) Link to an external style sheet namely personal.css from your index.html file.

(c) Create a CSS document called personal .css (Make sure you save as type .css) with rules for the following:

  • Have your h2 headings:
    1. Appear in a color of your choice.
    2. Be centered on the page (text-align: center;).
    3. In the Serif font family of your choice.
  • Double the H1 headings size (relative font size).
  • For paragraphs
    1. Specify a font family and font size.
    2. Give a background color with 5 px padding on each side.
  • For tables
    1. Specify a border of width 3px.
    2. Table heading in bold.
  • Remove the underline in your links.

(d) View the html file in a browser.

(e) Create another CSS file with different style rules for above mentioned elements and then link index.html to this CSS file. Now view index.html and see the change.

Solutions for 6: Cascading Style Sheets (CSS)

Assisted PracticeAssignment
Sumita Arora solutions for कंप्युटर ऐप्लकैशन [अंग्रेजी] कक्षा १० chapter 6 - Cascading Style Sheets (CSS) - Shaalaa.com

Sumita Arora solutions for कंप्युटर ऐप्लकैशन [अंग्रेजी] कक्षा १० chapter 6 - Cascading Style Sheets (CSS)

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 6 (Cascading Style Sheets (CSS)) 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 6 Cascading Style Sheets (CSS) are .

Using Sumita Arora कंप्युटर ऐप्लकैशन [अंग्रेजी] कक्षा १० solutions Cascading Style Sheets (CSS) 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 6, Cascading Style Sheets (CSS) कंप्युटर ऐप्लकैशन [अंग्रेजी] कक्षा १० 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×