Opening the paper…
Figure from the original question paper How will the browser render the following HTML document? <!DOCTYPE html> <html> <head> <title>Document</title> <style> div{ border: 1px solid black; color:pink; } span{ border: 1px solid pink; display: block; } div,span{ width:8%; margin: 2px; } </style> </head> <body> <div>Div 1</div> <div>Div 2</div> <span>Span 1</span> <span>Span 2</span> </body> </html> Consider the statements given below and choose the correct option.\ **Statement 1:** 100% statement coverage automatically implies 100% branch coverage. **Statement 2:** 100% statement coverage automatically implies 100% condition coverage.