Unlimited Online Free Software Download! Get 100% Free Hurry up!

WEB DESIGN Quiz

Welcome!

Quiz
Q. 1   There are ___ levels of heading in HTML

Six

Q. 2   The following html tag is used to display the content as a moving text

<marquee>

Q. 3   html comment should be enclosed between

<!-- and -->

Q. 4   _____ tag is used before beginning of the paragraph text

<p>

Q. 5   Example of picture editing software is

photoshop

Q. 6   html document have a extension ______

.htm or .html

Q. 7   The _____ element can be used to identify your html file to the outside world

html

Q. 8   Which of the following is true

Unordered list starts with <UL> and ends with </UL>

Q. 9   Which of the following is true?

BR tag is used to have a blank line

Q. 10   to get the ordered list we use

<OL>

Q. 11   HTML is the method where ordinary text can be converted into

None of the above

Q. 12   WWW stands for

world wide web

Q. 13   The CSS property used to control the element’s font-size is__________

None

Q. 14   The HTML attribute used to define the internal stylesheet is___________

<style>

Q. 15   Which of the following CSS property is used to set the background image of an element?

background-image

Q. 16   Which of the following is the correct syntax to display the hyperlinks without any underline?

a {text-decoration : none;}

Q. 17   Which of the following is the correct syntax to make the background-color of all paragraph elements to yellow?

p {background-color : yellow;}

Q. 18   Which of the following property is used as the shorthand property for the padding properties?

padding

Q. 19   The CSS property used to make the text bold is___________

font-weight : bold

Q. 20   The property in CSS used to change the background color of an element is_____________

background-color

Q. 21   Which of the following is the correct syntax for referring the external style sheet?

<link rel=“stylesheet” type=“text/css” href=“example.css”>

Q. 22   The HTML attribute used to define the inline styles is___________

style

Q. 23   The CSS property used to draw a line around the elements outside the border?

outline

Q. 24   Which of the following CSS property is used to specify the space between every letter inside an element?

letter-spacing

Q. 25   The CSS property used to make the rounded borders, or rounded corners around an element is________

border-radius

Q. 26   The CSS property used to specify the transparency of an element is____________

opacity

Q. 27   Which of the following property is used as the shorthand property of margin properties?

margin

Q. 28   The CSS property used to set the distance between the borders of the adjacent cells in the table is__________

border-spacing

Q. 29   Are the negative values allowed in padding property?

No

Q. 30   What are the valid values of font-style property?

inherit, italic, normal, oblique

Q. 31   Which CSS property is used to specify uppercase and lowercase letters in a text?

text-transform

Q. 32   In how many ways can CSS be added to HTML?

Three

Q. 33   Which selector do we use to specify the rule for binding some particular unique element?

id

Q. 34   Internal styles are written within the _____ element.

<style>…</style>

Q. 35   HTML is what type of language ?

Markup Language

Q. 36   Which HTML tag produces the biggest heading?

<h1>

Q. 37   Which is correct?

<b>Click Here</b>

Q. 38   To create a link to an anchor, you use the______property in A tag.

Href

Q. 39   The page title is inside the____tag.

Head

Q. 40   <UL>...</UL> tag is used to ________

display the bulleted list

Q. 41   <TD>...</TD> tag is used to ________

Table Data

Q. 42   Which tag is used to create body text in HTML?

<BODY>

Q. 43   Which plugin is used to cycle through elements, like a slideshow?

carousel

Q. 44   Which plugin is used to create a modal window?

modal

Q. 45   Which plugin is used to create a tooltip?

tooltip

Q. 46   Bootstrap’s grid system allows up to

12 columns across the page

Q. 47   Which class should be used to indicate a button group?

btn-group

Q. 48   Which of the following bootstrap styles of buttons can be used to make the size of the button small?

.btn-sm

Q. 49   How many Container class are there in Bootstrap?

Two

Q. 50   The _________ class is used to right-align navigation bar buttons.

.navbar-right

Q. 51   Which class is used to add buttons inside the navigation bar?

.navbar-btn

Q. 52   Bootstrap is developed by

Mark Otto and Jacob Thornton

Q. 53   Which of the following bootstrap style is used to add standard links to .navbar?

navbar-link

Q. 54   How do you insert a comment in a CSS file?

/* this is a comment */

Q. 55   How do you change the left margin of an element?

margin-left:

Q. 56   Interpret this statement: <strong>Michelle</strong>

It will print out Michelle in bold font

Q. 57   What is the tag for an inline frame?

Iframe

Q. 58   Which of the following class in bootstrap is used to create a big box for calling extra attention?

.jumbotron

Q. 59   Which of the following class in Bootstrap is used to create a basic list group?

.list-group

Q. 60   Which of the following class in Bootstrap is used to create basic pagination?

.pagination

Q. 61   Which of the following class in Bootstrap is used to create a badge?

.badge

Q. 62   The class in Bootstrap which is used to specify the collapsible elements is -

.collapse

Q. 63   Which of the following class in Bootstrap is used for creating the large size modals?

.modal-lg

Q. 64   Which of the following is correct method to add a success button?

<button class = "btn btn-success"> success </button>

Q. 65   Which of the following class in Bootstrap is used to create a label?

.label

Q. 66   Which of the following is correct about the Bootstrap Grid system?

Both (a) and (b)

Q. 67   Which of the following class in Bootstrap is used to style a table with borders surrounding every element?

.table-bordered

Q. 68   Which of the following class in Bootstrap is used to style a table with a light gray background to rows when the user moves the cursor over them?

.table-hover

Q. 69   In the below code snippet, in what order will the margins be added ? p { margin: 25px 50px 75px 100px; }

Top, Right, Bottom, Left,

Q. 70   Which of the following class in Bootstrap is used to provide a responsive fixed width container ?

.container

Q. 71   How can we select an element with a specific ID in CSS ?

#

Q. 72   What type of CSS is generally recommended for designing large web pages ?

External

Q. 73   What type of CSS is the following code snippet ? <h1 style = "color:blue;" >A Blue Heading </h1>

Inline

Q. 74   How many columns are allowed in a bootstrap grid system ?

12 columns

Q. 75   Which HTML tag is used to declare internal CSS ?

<style>

Q. 76   What are the attributes used to change the size of an image ?

Width and height

Q. 77   We enclose HTML tags within ?

< >

Q. 78   Which of the following tags doesn't require a closing tag ?

Both the <hr> and the <br> tag

Q. 79   Which property is used to define the font of the element's text?

font-family

Q. 80   Which is the correct inline CSS for p tag to define paragrap's text and background colors?

<p style="color: red; background-color: yellow;">

Q. 81   What does the abbreviation HTML stand for?

Hyper Text Markup Language.

Q. 82   What is the smallest header in HTML by default?

h6

Q. 83   What are the types of lists available in HTML?

Ordered, Unordered Lists.

Q. 84   HTML files are saved by default with the extension?

.html

Q. 85   We enclose HTML tags within?

<>

Q. 86   What is the effect of the tag?

It converts the text within it to bold font.

Q. 87   Which of the following is correct about HTML?

HTML uses tags defined within the language.

Q. 88   How to display preformatted text in HTML?

<pre>

Q. 89   What is meant by an empty tag in HTML?

An empty tag does not require a closing tag

Q. 90   Which attribute is used to provide a unique name to an HTML element?

id

Q. 91   What is the function of the HTML style attribute?

It is used to add styles to an HTML element.

Q. 92   Which of the following is the correct syntax for using the HTML style attribute?

<tagname style "property: value;" >

Q. 93   Which HTML element is used to define description data?

<dd>

Q. 94   Which of the following properties is used to change the font of text?

font-family

Q. 95   How are quotations defined in HTML?

<blockquote >

Q. 96   What tag is used to render an image on a webpage?

img

Q. 97   Apart from <i> tag, which of the following tag is used to render a text in italics?

<em>

Q. 98   Colors are defined in HTML using?

All of the above

Q. 99   Which property is used to set colors in HTML?

color

Q. 100   What are the types of unordered lists in HTML?

Circle, square, disc.

Q. 101   Which property is used to set border colors in HTML?

border

Q. 102   Which of the following things are necessary to create an HTML page?

Both A and B

Q. 103   Which HTML tag is called the root element of an HTML document?

<html>

Q. 104   How is black color represented in terms of RGB values?

RGB(O, O, 0)

Q. 105   What does the Alpha value in RGBA represent?

Opacity value for a color.

Q. 106   What does the Alpha value of 0.0 represent?

Fully Transparent.

Q. 107   How to set a font for a whole page?

<defaultfont>

Q. 108   Before using a pointer variable, it should be ___.

Both A. and B.

Q. 109   Which HTML tag is used to set up a Javascript–like client?

<script>

Q. 110   What are the main components of the front end of any working website?

HTML, CSS, Javascript.

Q. 111   What is the select tag used for?

Creates a combo box.

Q. 112   The most basic part of any HTML page is?

ASCII Text

Q. 113   What are those objects called which are used for storing data on the client provided by the HTML local storage?

Both A and B

Q. 114   The default value of the BORDER attribute is?

1 pixel

Q. 115   What are some valid character sets available?

All of the above

Q. 116   How many characters can be written in I KB?

1024

Q. 117   Which of the following are examples of block–level elements in HTML?

All of the above

Q. 118   What are the properties of block-level elements?

All of the above.

Q. 119   If a background image is smaller than the screen on which it is being displayed, what will occur on the webpage?

The image will be repeated

Q. 120   Which property allows an image link to show a text label?

alt

Q. 121   What is CSS stands for in Webdesign?

Cascading Style Sheets

Q. 122   What CSS describes?

CSS describes how HTML elements are to be displayed on screen, paper, or in other media

Q. 123   What is a CSS selector?

A CSS selector is the first part of a CSS Rule. It may an HTML element or pattern of elements.

Q. 124   In a CSS file, there is a CSS rule for paragraphs tags — what does p can be called?

Selector

Q. 125   Internal styles are written within the element.

<style>...</style>

Q. 126   Inline styles are written within the attribute.

style

Q. 127   CSS comments are placed within the

/* and */

Q. 128   Can comments also span multiple lines?

Yes

Q. 129   Which property is used to define the text color?

color

Q. 130   Which property is used to define the background color?

Both A. and C.

Q. 131   From the given options which is/are the valid way to represent a color?

All of the above

Q. 132   Which property is used to define the font of the element is text?

font-family

Q. 133   To make a text italic, which CSS property is used?

font-style

Q. 134   Why font-weight property is used?

Sets how thick or thin characters in text should be displayed.

Q. 135   What is/are the correct value(s) of font-weight property?

normal, bold, bolder, lighter, initial, and inherit

Q. 136   What is the correct syntax of border property in CSS?

border: border-width border-style border-color

Q. 137   Which of the following is the correct syntax to remove the underline on hyperlinks and visited hyperlinks?

a {text-decoration : none;}, a:visited {text-decoration : none;}

Q. 138   Which CSS property is used to style the hyperlinks on hover (Mouse over)?

a:hover

Q. 139   If you want to use a green dotted border around an image, which CSS property is used for that?

Both A. and B.

Q. 140   Which CSS property and value is used to center an element?

text-align:center

Q. 141   What are the valid values of text-align property?

left, center, right, justify

Q. 142   What is the use of "text-align:justify" in CSS?

Stretches the lines so that each line has equal width

Q. 143   Which CSS property is used to specify the indentation of the first line of a text?

text-indent

Q. 144   Which CSS property is used to specify the space between the characters in a text?

letter-spacing

Q. 145   Which CSS property is used to specify the space between lines?

line-height

Q. 146   Which CSS property is used to specify the space between the words in a text?

word-spacing

Q. 147   Which CSS property adds shadow to text?

text-shadow

Q. 148   Which is the correct CSS statement to capitalize the first letter of each word?

text-transform: capitalize

Q. 149   What are the valid values of text-transform property?

uppercase, lowercase, and capitalize

Q. 150   What are the valid values of "text-decoration" property?

overline, line-through, underline, and none

Q. 151   Which CSS property specifies how to align the last line of a text?

text-align-last

Q. 152   Which CSS property sets the vertical alignment of an element?

vertical-align

Q. 153   Which CSS property specifies the type of list item marker?

list-style-type

Q. 154   Which is the correct CSS statement is used to remove the markers/bullets?

list-style-type: none;

Q. 155   Which CSS property specifies an image as the list item marker?

list-style-image

Q. 156   Which CSS property specifies if/how an element is displayed?

display

Q. 157   HTML elements are positioned by default.

static

Q. 158   What are the valid values for "position" property?

static, relative, fixed, absolute, and sticky

Q. 159   Which CSS property specifies the opacity/transparency of an element?

opacity

Q. 160   Which CSS function performs a calculation to be used as the property value?

calc()

Q. 161   Which CSS function uses the largest value?

max()

Q. 162   Which CSS function uses the smallest value?

min()

Q. 163   What is CSS?

All of the above

Q. 164   The <style> in Internal CSS refers to

HTML tags

Q. 165   Can we link multiple stylesheets to a single page?

Yes

Q. 166   The CSS property used to change text sizes?

font-size

Q. 167   In this line of code, identify the selector
p {border: 2px solid blue;}

p

Q. 168   How many color names does CSS supports?

140 names

Q. 169   The property is used in the positioning of the background image.

background-position

Q. 170   what means 4 times the size of the current font.

4em

Q. 171   Amongst the following browsers, which browser supports almost all the CSS properties?

Google Chrome

Q. 172   What is the CSS Entity for the character "#"?

0023

Q. 173   This selector selects all the elements where the parent is a
element.

h > p

Q. 174   Which selector selects the markers of list items?

::marker

Q. 175   Which is the most widely used font in customizing web pages?

Arial

Q. 176   Which of the following CSS properties are animatable?

animation

Q. 177   We can give space between unit and value when assigning length values to CSS properties.

False

Q. 178   Which of these units of length is supported by Chrome Version 1.0?

px

Q. 179   Which line of code is a must to write to apply CSS Flexbox properties?

display: flex;

Q. 180   The default value of justify-content property is

flex-start

Q. 181   Which is the correct syntax for adding animation?

animation: name duration timing-function

Q. 182   Which line of code specifies playing an animation with the same speed from beginning to the end?

div {animation- timing function: linear;)

Q. 183   Which line of code represents a universal selector?

*{border: 2px solid red;}

Q. 184   Which of the following properties specify the width of the borders?

Both A and C

Q. 185   Is border-image property animatable?

No

Q. 186   Which cursor property value indicates that the program is busy?

wait

Q. 187   What does this line of code explain? p {display: flex;}

All the elements are displayed as an inline flex container

Q. 188   The text-align property defines the alignment of text in an element.

horizontal

Q. 189   Does the z-index property accept negative values?

Yes

Q. 190   Which CSS property is not supported by the Firefox browser?

viewport

Q. 191   Which one is a fallback font?

Serif

Q. 192   Where do we store external stylesheets?

CSS files

Q. 193   In the given line of code, identify the type of selector used. #Main {background-color: yellow;}

CSS id selector

Q. 194   The Hex Code for the white color is

#FFFFFF

Q. 195   In CSS, what does HSL stands for?

hue, saturation, lightness

Q. 196   Among the following CSS properties, which property is not a shorthand property?

display

Q. 197   In this line of code, what is the use of the alt attribute? it is red

Both A. and B.

Q. 198   The CSS border property specifies the style, color, and of an element border.

width

Q. 199   What does "padding: 50px 20px;" specifies?

Both A. and B.

Q. 200   What is the default size for normal text, like paragraphs?

16 px

Q. 201   Which of the following CSS selectors are used to specify a group of elements?

class

Q. 202   Which of the following has introduced text, list, box, margin, border, color, and background properties?

css

Q. 203   Which of the following CSS framework is used to create a responsive design?

bootstrap

Q. 204   Which of the following CSS property is used to make the text bold?

font-weight: bold

Q. 205   What will be the output of following CSS code snippet?
hl {color: "greenn ; }

nothings happen

Q. 206   Which of the following CSS style property is used to specify an italic text?

font-style

Q. 207   What will be the output of following CSS code snippet?

h1 {color: red text-decoration: underline; font-style: italic;}

only font-style: italic works

Q. 208   Which of the following are the CSS Extension Prefixes for Webkit?

-webkit

Q. 209   Which of the following function defines a linear gradient as a CSS image?

linear-gradient()

Q. 210   Which of the following is the correct way to apply CSS Styles?

All of the above.

Q. 211   Which of the following CSS property sets the font size of text?

font-size

Q. 212   Which of the following is not the property of the CSS box model?

color

Q. 213   What will be the output of the following CSS code snippet?

span { border: 1px solid red; outline: green dotted thick; }

All span elements will have a outer green dotted border and an inner red border

Q. 214   Which of the following CSS property sets the shadow for a box element?

box-shadow

Q. 215   Which of the following CSS property is used to set the color of the text?

color

Q. 216   Which of the following CSS Property controls how an element is positioned?

position

Q. 217   Which of the following CSS property is used to specify table borders in CSS?

border

Q. 218   Which CSS Property Sets A Background Image For An Element?

Background - Image

Q. 219   What Should Be The Table Width, so That The Width Of A Table Adjust To The Current Width Of The Browser Window?

100%

Q. 220   When We Write <img src="img.png"> What "img.png" Inside Double Quote Implies?

Value

Q. 221   The Default Value Of "position" Attribute Is

Static

Q. 222   Who invented css?

Hakon Wium Lie

Q. 223   CSS is written in which language?

HTML

Q. 224   What is the latest version of css?

css 3

Q. 225   how will you make all paragraph elements red in color?

p {color: red;}

Q. 226   HTML document start and end with which tag pairs?

<HTML> ... </HTML>

Q. 227   <TITLE> ... tag must be within _______

Header

Q. 228   Text within ... <STRONG> tag is displayed as _____

bold

Q. 229   Which tag is used to display the numbered list?

<OL > ... </OL >

Q. 230   <SCRIPT> tag can be placed within____

both A and B

Q. 231   using <P>tag will

start a new paragraph

Q. 232   <TD > tag is used for ________

Table Records and table data

Q. 233   Which HTML Tag will use to scroll a text in web page?

< marquee> ... </marquee >

Q. 234   WWW stands for ______.

World Wide Web

Q. 235   A homepage is __________.

the first page of a website

Q. 236   ____is a document commonly written in Hyper Text Markup Language (HTML) that is accessible through the Internet or other network using an internet browser.

Web page

Q. 237   A web page is located using a _____.

Uniform Resource Locator

Q. 238   A piece of icon or image on a web page associated with another webpage is called____________.

hyperlink

Q. 239   ________ is a collection of web pages.

Web site

Q. 240   What is the correct HTML tag for inserting a line break?

< br>

Q. 241   Webpage starts with which of the following tag?

<html >

Q. 242   JPG sometimes called ________.

JPEG

Q. 243   A webpage displays a picture. What tag was used to display that picture?

img

Q. 244   < b>tag makes the enclosed text bold. What is other tag to make text bold?

<strong >

Q. 245   Tags and text that are not directly displayed on the page are written in _ section.

<head>

Q. 246   Which tag inserts a line horizontally on your web page?

<hr>

Q. 247   What should be the first tag in any HTML document?

<html>

Q. 248   Which tag allows you to add a row in a table?

<tr> and </tr>

Q. 249   How can you make an e-mail link?

<a href="mailto:xxx@yyy">

Q. 250   Choose the correct HTML tag to make a text italic

<i>

Q. 251   To create a combo box (drop down box) which tag will you use?

<select>

Q. 252   Which of the following is not a pair tag?

<img>

Q. 253   To create HTML document you require.

Just a notepad can be used

Q. 254   The special formatting codes in HTML document used to present content are

tags

Q. 255   HTML documents are saved in

ASCII text

Q. 256   Some tags enclose the text. Those tags are known as

Pair tags

Q. 257   In HTML document the tags

can be written in both uppercase or lowercase

Q. 258   Marquee is a tag in HTML to

Display text with scrolling effect

Q. 259   To create a blank line in your web page

insert < BR > tag

Q. 260   The way the browser displays the object can be modified by _____

attributes

Q. 261   Which of the following HTML code is valid?

None of the above.

Q. 262   Which of the following is an attribute related to font tag?

All of the above

Q. 263   HTML supports

both type of lists

Q. 264   What tag is used to list individual items of an ordered list?

LI

Q. 265   Which attribute is used withimg tag to display the text if image could not load in browser?

alt

Q. 266   Which attribute you’ll use with TD tag to merge two cells horizontally?

colspan=2

Q. 267   Which of the following is correct about Bootstrap?

All of the above.

Q. 268   Which of the following is correct about Bootstrap?

All of the above

Q. 269   Which of the following is a part of Mobile First Strategy of Bootstrap?

All of the above.

Q. 270   Which of the following is correct about Bootstrap Grid System?

All of the above.

Q. 271   Which of the following is correct about Bootstrap Grid System?

All of the above.

Q. 272   Which of the following is correct about Bootstrap Media Query?

It simply applies some CSS, based on certain conditions set forth. If those conditions are met, the style is applied.

Q. 273   Which of the following is correct about Bootstrap Media Query?

Both of the above.

Q. 274   Which of the following is correct about Bootstrap Mobile First Strategy?

All of the above.

Q. 275   Which of the following class styles a table as a nice basic table with just some light padding and horizontal dividers?

.table

Q. 276   Which of the following class styles a table as a nice basic table with stripes on rows?

.table-striped

Q. 277   Which of the following class styles a table with borders surrounding every element and rounded corners around the entire table?

.table-bordered

Q. 278   Which of the following class styles a table with a light gray background to rows while the cursor hovers over them?

.table-hover

Q. 279   Which of the following class applies the hover color to a particular row or cell of a table?

.active

Q. 280   Which of the following class indicates a successful or positive action?

.success

Q. 281   Which of the following class indicates a warning that might need attention?

.warning

Q. 282   Which of the following class indicates a dangerous or potentially negative action?

.danger

Q. 283   Which of the following class can be used to create a responsive table?

.table-responsive

Q. 284   Which of the following class is required to be added to form tag to make it inline?

.form-inline

Q. 285   Which of the following class is required to be added to form tag to make it horizontal?

.form-horizontal

Q. 286   Which of the following bootstrap style of button creates a default/ standard button?

.btn

Q. 287   Which of the following bootstrap style of button provides extra visual weight and identifies the primary action in a set of buttons?

.btn-primary

Q. 288   Which class adds zebra-stripes to a table?

.table-striped

Q. 289   Which class shapes an image to a circle?

.rounded-circle

Q. 290   Which class is used to create a big box for calling extra attention?

.jumbotron

Q. 291   Which button class is used to create a large button?

.btn-lg

Q. 292   Which class is used to create a button group?

.btn-group

Q. 293   Which class is used to create a badge?

.badge

Q. 294   Which class is used to create a loader?

.spinner-border

Q. 295   Which class is used to create a basic pagination?

.pagination

Q. 296   Which class is used to create a basic list group?

.list-group

Q. 297   Which class adds a heading to a card?

.card-header

Q. 298   Which class indicates a dropdown menu?

.dropdown

Q. 299   A standard navigation bar is created with:

< nav class= "navbar navbar-expand-md " >

Q. 300   Which component is used to cycle through elements, like a slideshow?

Carousel

Q. 301   Which attribute is used to create a tooltip?

data-toggle="tooltip"

Q. 302   Which contextual class indicates a succesful or positive action?

.bg-success

Q. 303   Which contextual class indicates a dangerous or potentially negative action?

.bg-danger

Q. 304   The Bootstrap grid system has four classes which defines screen size:

xs, sm, md, lg

Q. 305   Which class is use to display black navigation bar?

.navbar-inverse

Q. 306   Which class is used to add rounded corners to an image?

.rounded

Q. 307   Which of the following is true about Jumbotron?

Both of the above

Q. 308   The bootstrap class md means for

small laptops

Q. 309   Which class is used to create warning notification alerts in Bootstrap?

.alert-warning

Q. 310   Which class is used to create a button as a link in bootstrap?

.btn-link

Q. 311   Which of the following class is used to create thumbnail image?

.img-thumbnail

Q. 312   .img-circle class makes the entire image round by adding border-radius:_________.

50%

Q. 313   The contextual classes that are used to create colored progress bar:

All of the above

Q. 314   The .container class provides

Fixed width container

Q. 315   Which class creates pagination?

pagination

Q. 316   Default size of H3 bootstrap heading

24px

Q. 317   Which class creates list of items?

list-group

Q. 318   Default size of H2 bootstrap heading

30px

Q. 319   Which is default for a form

Vertical Form

Q. 320   Default size of H1 bootstrap heading

36px

Q. 321   Default size of H6 bootstrap heading

12px

Q. 322   The bootstrap class xs means for

phones

Q. 323   Bootstrap’s global default font-size is

14px

Q. 324   The Carousel plugin is a component

For cycling through elements like slideshow

Q. 325   In Bootstrap we can addfor

Proper Rendering and Zooming in mobile

Q. 326   What is latest version of bootstrap?

version 5

Q. 327   Bootstrap is used for

Web applications

Q. 328   Which class is used to create a badge danger?

.badge-danger

Q. 329   Which class is used to create a pagination?

.pagination

Q. 330   We use the ___ class to make any element fixed/stay at the top of the page when you scroll past it.

.sticky-top

Q. 331   The ___ class adds a scrollbar to the table when needed

.table-responsive

Q. 332   In list groups, which class is used to highlight the current item?

.active

Q. 333   Which class to create border in bootstrap?

.border

Q. 334   In Bootstrap, content must be placed within...

Columns

Q. 335   If you want to have 3 equal columns in Bootstrap, which class would you use?

.col-md-4

Q. 336   Is it true that the Bootstrap grid system works across multiple devices?

yes

Q. 337   Which of the following is correct method to add a success button.

.btn and .btn-success

Q. 338   Which of the following class in Bootstrap is used to create an striped progress bar?

.progress-bar-striped

Q. 339   Which of the following class in Bootstrap is used for creating the small size modals?

.modal-sm

Q. 340   How do you add shadow to elements in CSS3?

box-shadow: 10px 10px 5px grey;

Q. 341   How can you created rounded corners using CSS3?

border-radius: 30px;

Q. 342   How to rotate objects using CSS3?

rotate-object: 30deg;

Q. 343   How to re-size/scale objects using CSS3?

transform: scale(1.5);

Q. 344   __________ is a property that allows developers to add rounded corners on the design elements.

Border-Radius

Q. 345   Which of the following is correct method to add a warning button.

.btn and .btn-warning

Q. 346   Which of the following class in Bootstrap is used to create an progress bar?

.progress-bar

Q. 347   If you want to have 4 equal columns in Bootstrap, which class would you use?

.col-md-3

Q. 348   If you want to have 2 equal columns in Bootstrap, which class would you use?

.col-md-6

Q. 349   If you want to have 6 equal columns in Bootstrap, which class would you use?

.col-md-2

Q. 350   Which class is use to fading effect to alert in bootstrap?

Both A. and B.

Q. 351   Which class is use to add slider caption in bootstrap?

.carousel-caption

Q. 352   Where in an HTML document is the correct place to refer to an internal style sheet?

In the <head> section

Q. 353   Which HTML attribute is used to define inline styles?

style

Q. 354   Which is the correct CSS syntax?

body {color: black;}

Q. 355   How do you add a background color for all elements?

hl {background-color:#FFFFFF;}

Q. 356   Which CSS property is used to change the text color of an element?

color

Q. 357   Which CSS property controls the text size?

font-size

Q. 358   How do you display hyperlinks without an underline?

a {text-decoration:none;}

Q. 359   How do you display a margin like this:
The margin-top = 10 pixels The margin-bottom = 5 pixels The margin-left = 20 pixels The margin-right = 1pixel?

margin: 10px 1px 5px 20px;

Q. 360   Which property is used to change the left margin of an element?

margin-left

Q. 361   When using the padding property; are you allowed to use negative values?

No

Q. 362   How do you make a list type none?

list-style-type: none;

Q. 363   How do you select an element with id demo?

#demo

Q. 364   How do you select elements with class name test?

.test

Q. 365   What is the default value of the position property?

static

Q. 366   Which of the following property specifies the right margin of an element?

margin-right

Q. 367   How do you display the following padding:
The top padding = 10 pixels The bottom padding = 5 pixels The left padding = 20 pixels The right padding = 1pixel

padding: 10px 1px 5px 20px;

Q. 368   What property and value do we use if we want to align text to the right?

text-align: right;

Q. 369   What property and value do we use if we want to align text to the justify?

text-align: justify;

Q. 370   Which class adds a text white to a page?

Both A and B

Q. 371   Which class helps a proper dark background in bootstrap?

.bg-dark

Q. 372   which class make a spinner in bootstrap?

.spinner-border

Q. 373   What does "padding: 50px 0px 20px 0px" specifies?

only top and bottom

Q. 374   Which of the following CSS selectors are used to specify tag elements?

p

Q. 375   Which of the following is the property of the CSS box model?

height-width

Q. 376   Which of the following attribute specifies the URL of the linked resource?

href

Q. 377   Which of the following property adds padding to the top of an element?

padding-top

Q. 378   Which of the following property sets a consistent margin on all four sides of the affected element?

margin

Q. 379   Which of the following property sets the background image to scroll or not to scroll with its associated element’s content?

background-attachment

Q. 380   HTML FULL FORM?

HYPER TEXT MARKUP LANGUAGE