Advertisements
Online Mock Tests
Chapters
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) Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 6 - Cascading Style Sheets (CSS) - Shaalaa.com](/images/computer-applications-english-class-10_6:75861902bcdf4cae915c246d575e285b.jpg)
Advertisements
Solutions for Chapter 6: Cascading Style Sheets (CSS)
Below listed, you can find solutions for Chapter 6 of CBSE Sumita Arora for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १०.
Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० 6 Cascading Style Sheets (CSS) Assisted Practice [Pages 271 - 273]
Section A: Objective Type Questions
Which of the following is not one of the DHTML technology?
HTML
CSS
JavaScript
WWW
The acronym CSS stands for what?
Carrot Sytem Style
Correlated Styling System
Cascading Style Sheets
Canvas Styling System
What property would you use to create space between the element’s border and inner content?
margin
spacing
padding
border
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>
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
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">
In the following code snippet, what value is given for the left margin:
margin: 5px 10px 3px 8px;3px
10px
8px
5px
What property is used to change the text color of an element?
fontcolor:
textcolor:
color:
font-color:
Which is the correct CSS syntax?
{p:color=black(p}p {color: black;}{p;color:black}p:color=black
What is the correct CSS syntax to change the font name?
font-name:
font:
font-family:
fontname:
Which HTML attribute is used to define inline CSS styles?
css
style
type
id
How do you make each word in a text start with a capital letter?
text-transform:capitalizetext-transform:uppercaseYou can’t do that with CSS
text:capitalize
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;}
Which CSS property controls the text size?
font-height
text-size
font-size
text-style
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 leftpadding:10px 15px 5px 10px;padding:15px 5px 10px 10px;padding:10px 5px 10px 15px;padding:10px 5px 15px 10px;
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
What is the difference between a static and dynamic web page?
What is DHTML?
What is CSS?
What is a CSS rule?
What are the components of a CSS rule?
Give an example of a CSS rule.
What different types of stylesheets can be created? How are these different?
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
What is wrong with the following CSS definition?
body (color = "black"; )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>If you want all links and DIV elements use Verdana font, how would you write the shortest CSS code?
How can you specify that the text of a DIV element should use font Calibri, if it is available, or Arial?
Can your background image be on a different server? How would you write your CSS code then?
How would you define a background image which would be displayed filling only the top of the screen?
Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० 6 Cascading Style Sheets (CSS) Assignment [Pages 274 - 275]
Type A: Theoretical Questions
Which property is used to change the background color?
background-color
bgcolor
bg-color
color
Which property is used to increase and decrease the text size?
font-width
font-size
text-width
text-size
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.
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.
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’>
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;
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
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
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
Use the CSS ______ property to configure the cellpadding of a table.
What is the utility of dynamic websites?
What are some features of dynamic websites?
What do you understand by Stylesheets?
How are Stylesheets useful?
What is a CSS style rule?
How do you define a CSS style rule?
What are three ways of creating style rules? Give examples of each.
What is the Cascading order of different style types?
Where do you place the code to associate a Web page with an external style sheet?
Type B: Application Oriented Questions
How do you add a background color for all <h1> elements?
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 = 1pixelHow do you make each word in a text start with a capital letter?
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:
- Appear in a color of your choice.
- Be centered on the page (text-align: center;).
- In the Serif font family of your choice.
- Double the H1 headings size (relative font size).
- For paragraphs
- Specify a font family and font size.
- Give a background color with 5 px padding on each side.
- For tables
- Specify a border of width 3px.
- 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)
![Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 6 - Cascading Style Sheets (CSS) Sumita Arora solutions for कम्प्युटर अँप्लिकेशन [इंग्रजी] इयत्ता १० chapter 6 - Cascading Style Sheets (CSS) - Shaalaa.com](/images/computer-applications-english-class-10_6:75861902bcdf4cae915c246d575e285b.jpg)
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.
