exam questions

Exam 70-480 All Questions

View all questions & answers for the 70-480 exam

Exam 70-480 topic 2 question 35 discussion

Actual exam question from Microsoft's 70-480
Question #: 35
Topic #: 2
[All 70-480 Questions]

You develop an HTML5 webpage. You have the following HTML markup: (Line numbers are for reference only.)

The webpage also contains the following CSS markup:

You need to determine how the webpage will appear when the CSS styles are applied.
Select two.

  • A. The first row of the table will have a red background.
  • B. The second row of the table will have a red background.
  • C. The second cell in the first row of the table will have a blue background.
  • D. The second cell in the third row of the table will have a blue background.
  • E. The second cell in the third row of the table will have not have blue background.
Show Suggested Answer Hide Answer
Suggested Answer: AE 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
eMax
Highly Voted 5 years, 7 months ago
It looks like the answer is A, D - not A, E
upvoted 14 times
nelaed
4 years, 10 months ago
Yes, i have tested it and it's A & D.
upvoted 2 times
...
...
TonyBezerra
Highly Voted 5 years, 7 months ago
I think the right answer are A and D.
upvoted 9 times
...
nootje
Most Recent 3 years, 8 months ago
i checked with vscode and 1st and 3rd row get red and de 2nd cells of the 2nd, 3rd and 4rth row are turning blue. So i would say that A and D are correct.
upvoted 1 times
...
alexcode
4 years, 6 months ago
AD is Correct Answer
upvoted 1 times
...
nelaed
4 years, 10 months ago
A&D are correct. <table> <tr> <th>one</th> <th>two</th> <th>three</th> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> </table> <style> table { border: 1px solid black; font-family: Arial; } tr:nth-child(odd) { background-color: red; } tr td:nth-of-type(even) { background-color: blue; } </style>
upvoted 1 times
...
MFDOOM
5 years, 2 months ago
A & D ar ethe correct answers
upvoted 5 times
...
Sanfour
5 years, 2 months ago
I think C & D
upvoted 1 times
...
MoSalah10
5 years, 4 months ago
Ignore the other fiddle, miner mistake ... correct one :https://jsfiddle.net/g8ntboh1/1/
upvoted 2 times
...
MoSalah10
5 years, 4 months ago
Thank me, AD correct https://jsfiddle.net/g8ntboh1/
upvoted 7 times
MoSalah10
5 years, 4 months ago
Ignore this, check the other fiddle
upvoted 1 times
...
alexcode
4 years, 6 months ago
Yoy have error in jsfiddle, excess ек
upvoted 1 times
alexcode
4 years, 6 months ago
excess tr
upvoted 1 times
...
...
...
Etnic
5 years, 6 months ago
correct answer A,D
upvoted 9 times
...
eMax
5 years, 7 months ago
what does it mean: will have not have?
upvoted 1 times
...
Piggas
5 years, 10 months ago
All odd rows (row 1 & 3) will be red background and all cells in columns 2 all rows will be blue.
upvoted 6 times
Steve0
5 years ago
row 1 is a <th>, not a <td>, so column 2 of the first row will be red, not blue. Because of this, the correct answer is A & D. (for E to be correct, the last CSS line would need to be "tr:nth-of-type(even) td:nth-of-type(even) {background-color:blue}"
upvoted 3 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...