CSS MCQ Set Paper 3
CSS MCQ Set Paper 3
[Marks]1
[Negative Marks]0
Q.3) Which of the following tag is used to create a combo box (or drop-
down box)?
[a] <list>
*[b] <select>
[c] <input type =dropdown>
[d] <ul>
<div>
<p>
<span class="text"> <span>Text</span></span>
</p>
</div>
[a]Red
*[b]Blue
[c]Green
[d]Black
Q.9) Fill in blanks from one of the options given below so that the
background of the paragraph is filled with color of color code #3cb371
<!doctype html>
<html>
<body>
<p style=” _______”>A paragraph </p>
</body>
</html>
[a]background-color: hex(#3cb371);
[b]bg-color:hex(#3cb371);
*[c]background-color:#3cb371;
[d]bg-color:#3cb371;
[S1] This is for the solution
Q.21) what does R,G and B in RGB value of HTML color mean?
*[a]Red,Green,Blue
[b]Red,Grey,Black
[c]Red,Grey,Blue
[d]Red,Green,Black
[a]0 to 256
[b]0 to 254
*[c]0 to 255
[d]0 to 256
[a]red
*[b]green
[c]tomato
[d]blue
[a] image()
[b] gradient()
*[c] linear-gradient()
[d] grayscale()
Q.27) In the below code snippet, in what order will the margins be
added?
p {
margin: 25px 50px 75px 100px;}
*[a]Top,Right,Bottom,Left
[b]Top,Left,Bottom,Right
[c]Top,Bottom,Right,Left
[d]Right,left,Top,Bottom