///
Analise o texto que é exibido no parágrafo quando esse script é executado.","text":"No contexto do Angular, considere o script a seguir.
ATENÇÃO: param1 + \" \" + param2
Analise o texto que é exibido no parágrafo quando esse script é executado.","answerCount":5,"datePublished":"2022-01-01T00:00:00-03:00","author":{"@type":"Organization","name":"FGV","url":"https://questionei.com"},"suggestedAnswer":[{"@type":"Answer","text":"undefined","position":1,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2022-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204392053/#alternativa-0","author":{"url":"https://questionei.com","@type":"Organization","name":"FGV"}},{"@type":"Answer","text":"ATENÇÃO:","position":2,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2022-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204392053/#alternativa-1","author":{"url":"https://questionei.com","@type":"Organization","name":"FGV"}},{"@type":"Answer","text":"ATENÇÃO: Temperatura 30","position":3,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2022-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204392053/#alternativa-2","author":{"url":"https://questionei.com","@type":"Organization","name":"FGV"}},{"@type":"Answer","text":"param1:Temperatura param2:30","position":4,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2022-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204392053/#alternativa-3","author":{"url":"https://questionei.com","@type":"Organization","name":"FGV"}},{"@type":"Answer","text":"Temperatura 30","position":5,"encodingFormat":"text/html","upvoteCount":0,"datePublished":"2022-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204392053/#alternativa-4","author":{"url":"https://questionei.com","@type":"Organization","name":"FGV"}}],"acceptedAnswer":{"@type":"Answer","text":"ATENÇÃO:","encodingFormat":"text/html","datePublished":"2022-01-01T00:00:00-03:00","url":"https://questionei.com/questoes/457941204392053/#resposta-correta","author":{"url":"https://questionei.com","@type":"Organization","name":"FGV"}}}} No contexto do Angular, considere o script a seguir. Analise o texto que é exibido no parágrafo quando esse script é executado.No contexto do Angular, considere o script a seguir.<body> <p style="font-size:40px" ng-app="xpto" ng-controller="temp">...
<body>
<p style="font-size:40px" ng-app="xpto"
ng-controller="temp">
ATENÇÃO: {{ param1 + " " + param2 }}
</p>
<script>
var app = angular.module("xpto", []);
app.controller("temp", function($scope) {
$scope.param1 = "Temperatura";
$scope.param2 = "30";
});
</script>
</body>