Considereo seguinte documento XML:
<?xmlversion="1.0" encoding="ISO-8859-1"?> <catalogo> <cd> <titulo>Empire Burlesque</titulo> <artista>BobDylan</artista> <pais>EUA</pais> <empresa>Columbia</empresa> <preco>10.90</preco> <ano>1985</ano> </cd> <cd> <titulo>Hide your heart</titulo> <artista>Bonnie Tyler</artista> <pais>UK</pais> <empresa>CBS Records</empresa> <preco>9.90</preco> <ano>1988</ano> </cd> </catalogo> Considere também o seguinte código XSL: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <h2>Colecao de CDs</h2> <table border="1"> <tr bgcolor="#9acd32"> <th>Titulo</th> <th>Artista</th> </tr> <xsl:for-each select="catalogo/cd[artista!='Bob Dylan']"> <tr> <td><xsl:value-of select="titulo"/></td> <td><xsl:value-of select="artista"/></td> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> </xsl:stylesheet> Assinale a alternativa que descreve a saída da execução da transformação XSL tendo como entrada o documento XML.