Dynamic Web Page Development (3350702) MCQs

MCQs of Introduction to Html and CSS

Showing 31 to 40 out of 123 Questions
31.

How do you insert a comment in a CSS file?

(તમે CSS ફાઇલ માં comment કઈ રીતે ઇન્સર્ટ કરી શકો છો?)

(a)

' this is a comment  

(b)

// this is a comment //

(c)

/* this is a comment */  

(d)

/ this is a comment

Answer:

Option (c)

32.

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

(તમે બધા <h1> એલિમેંટ માટે background color કેવી રીતે ઉમેરશો?)

(a)
h1.all { background-color:#FFFFFF; }
(b)
all.h1 { background-color:#FFFFFF; }
(c)
h1 { background-color:#FFFFFF; }  
(d)
h1 ( background-color:#FFFFFF; )
Answer:

Option (c)

33.

How do you display hyperlinks without an underline?

(કોઈ અંડરલાઇન વિના તમે કેવી રીતે હાઇપરલિંક્સ ડિસ્પ્લે કરી શકો છો?)

(a)
a { text-decoration:no-underline; }  
(b)
a { text-decoration:none; } 
(c)
a { underline:none; }
(d)
a { decoration:no-underline; }
Answer:

Option (b)

34.

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

(તમે textમાંના દરેક પહેલા અક્ષરને capital letter થી કેવી રીતે શરૂ કરો છો?)

(a)

transform:capitalize  

(b)

text-transform:capitalize  

(c)

text-transform:capital  

(d)

text-style:capitalize

Answer:

Option (b)

35.

Which property define the space between the element border and the element content?

(કઈ પ્રોપર્ટિ એલિમેંટની બોર્ડર અને એલિમેંટ content વચ્ચેની જગ્યાને define કરે છે?)

(a)

padding  

(b)

margin

(c)

border

(d)

content

Answer:

Option (a)

36.

How do you display a padding like this:

The top padding = 100 pixels

The bottom padding = 200 pixels

The left padding = 300 pixels

The right padding = 300 pixels ?

તમે આની જેમ padding ને કેવી રીતે ડિસ્પ્લે કરો છો:

top padding = 100 pixels

bottom padding = 200 pixels

left padding = 300 pixels

right padding = 300 pixels ?

(a)

padding: 100px 300px 200px;

(b)

padding: 100px 200px;

(c)

padding: 200px 300px 100px;

(d)

padding: 300px 100px 200px;

Answer:

Option (a)

37.

How do you display a margin like this:

The top margin = 25 pixels

The bottom margin = 75 pixels

The left margin = 100 pixels

The right margin = 50 pixels ?

તમે આની જેમ margin ને કેવી રીતે ડિસ્પ્લે કરો છો:

top margin = 25 pixels

bottom margin = 75 pixels

left margin = 100 pixels

right margin = 50 pixels ?

(a)

margin: 25px 70px 100px 50px;

(b)

margin: 25px 100px 75px 50px;

(c)

margin: 25px 50px 75px 100px;

(d)

margin: 100px 50px 75px 25px;

Answer:

Option (c)

38.

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

( એલિમેંટના left marginને બદલવા  માટે કઈ પ્રોપર્ટિનો ઉપયોગ થાય છે?)

(a)

margin-left 

(b)

padding-left

(c)

indent

(d)

left-margin

Answer:

Option (a)

39.

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 = 1pixels ?

તમે આની જેમ કોઈ બોર્ડર કેવી રીતે ડિસ્પ્લે કરો છો:

The top border = 10 pixels

The bottom border = 5 pixels

The left border = 20 pixels

The right border = 1pixels ?

(a)

border-width:10px 20px 5px 1px;  

(b)

border-width:10px 5px 20px 1px;

(c)

border-width:10px 1px 5px 20px;  

(d)

border-width:5px 20px 10px 1px;

Answer:

Option (c)

40.

How do you select an element with id 'demo'?

('demo' id સાથે તમે કેવી રીતે એલિમેંટ સિલેક્ટ કરો છો?)

(a)

demo  

(b)

*demo

(c)

.demo

(d)

#demo  

Answer:

Option (d)

Showing 31 to 40 out of 123 Questions