Pará ficou com a nota mais baixa do Ideb em 2009

O Pará foi o estado que obteve o pior desempenho na avaliação do Índice de Desenvolvimento da Educação Básica (Ideb) em 2009 para as séries iniciais do ensino fundamental. A nota do estado, que levou em conta a avaliação das escolas urbanas públicas e privadas, foi 3,6, em uma escala que vai de 0 a 10.

A maior nota, com os mesmos critérios, foi registrada no Distrito Federal e em Minas Gerais, que ficaram com 5,6. Todos os estados tiveram crescimento da nota na avaliação das séries iniciais, mas 59,2% ainda ficaram com nota abaixo da média nacional, que foi de 4,6.

Na avaliação das séries finais, de 5ª à 8ª, o pior desempenho foi o de Alagoas, com nota 2,9, e o estado que se saiu melhor foi Santa Catarina, que obteve a nota 4,5. Para o ensino médio, o pior classificado foi o Piauí, com nota 3 e o melhor colocado foi o Paraná, com 4,2.

Na amostragem por região, o Norte e o Nordeste ficaram com a pior classificação nas séries iniciais: 3,8. No outro extremo está a Região Sudeste, com 5,3. A Região Sul ficou com 5,1 e a Centro-Oeste com 4,9.

Entre as capitais brasileiras, a que obteve a pior média foi Maceió (AL), com nota 3,6 para as séries iniciais e 2,6 para as séries finais do ensino fundamental. Pela segunda vez, Curitiba teve a maior nota para as séries iniciais, com nota 5,7. Na avaliação de 2007, a capital paranaense também obteve o melhor resultado na avaliação, com 5,1. Para as séries finais, Palmas ficou na frente entre as capitais, com nota 4,6.

O Ideb foi criado pelo Instituto Nacional de Estudos e Pesquisas Educacionais Anísio Teixeira (Inep) e serve para medir a qualidade da educação no país, levando em conta as notas obtidas pelos alunos na Prova Brasil e dados sobre a aprovação escolar.

Fonte: Agência Brasil

 

ENVIE A MATÉRIA:

 

<% Dim objCDONTS ' Email object Dim strFromName ' From persons' real name Dim strFromEmail, strToEmail ' Email addresses Dim strSubject, strBody ' Message Dim strThisPage ' This page's URL Dim strReferringPage ' The referring page's URL Dim bValidInput ' A boolean indicating valid parameters ' Retrieve this page name and referring page name strThisPage = Request.ServerVariables("SCRIPT_NAME") strReferringPage = Request.ServerVariables("HTTP_REFERER") ' Debugging lines: 'Response.Write strThisPage & "
" & vbCrLf 'Response.Write strReferringPage & "
" & vbCrLf ' Read in and set the initial values of our message parameters strFromName = Trim(Request.Form("txtFromName")) strFromEmail = Trim(Request.Form("txtFromEmail")) strToEmail = Trim(Request.Form("txtToEmail")) strSubject = "www.contee.org.br" strBody = Trim(Request.Form("txtMessage")) ' I set the body message to a message that referenced the page the ' user arrived from. This makes it great if you place a link to it ' from your different articles, but can be weird if people link in ' from other web sites. If strBody = "" Then If strReferringPage = "" Or InStr(1, strReferringPage, "www.contee.org.br", 1) = 0 Then strBody = "" strBody = strBody & "O link abaixo é uma sugestão de leitura: Pará ficou com a nota mais baixa do Ideb em 2009" & vbCrLf strBody = strBody & vbCrLf strBody = strBody & "http://www.contee.org.br/noticias/educacao/nedu1673.asp" & vbCrLf Else strBody = "O link abaixo é uma sugestão de leitura: Pará ficou com a nota mais baixa do Ideb em 2009" sstrBody = strBody & "O link abaixo é uma sugestão de leitura: Pará ficou com a nota mais baixa do Ideb em 2009" & vbCrLf strBody = strBody & vbCrLf strBody = strBody & "http://www.contee.org.br/noticias/educacao/nedu1673.asp" & vbCrLf End If End If ' Quick validation just to make sure our parameters are somewhat valid bValidInput = True bValidInput = bValidInput And strFromName <> "" bValidInput = bValidInput And IsValidEmail(strFromEmail) bValidInput = bValidInput And IsValidEmail(strToEmail) ' If valid send email and show thanks, o/w show form If bValidInput Then ' Set up our email object and send the message Set objCDONTS = Server.CreateObject("CDONTS.NewMail") objCDONTS.From = strFromName & " <" & strFromEmail & ">" objCDONTS.To = strToEmail objCDONTS.Subject = strSubject objCDONTS.Body = strBody objCDONTS.Send Set objCDONTS = Nothing ' Show our thank you message ShowThanksMsg Else If "http://" & Request.ServerVariables("HTTP_HOST") & strThisPage = strReferringPage Then Response.Write "Foi encontrado erro no preenchimento. Por favor confira os dados:" & "
" & vbCrLf End If ' Show our information retrieval form ShowReferralForm strThisPage, strFromName, strFromEmail, strToEmail, strBody End If ' End of page logic... subs and functions follow! %>
<% ' Subroutines and Functions that encapsulate some functionality ' and make the above code easier to write... and read. ' A quick email syntax checker. It's not perfect, ' but it's quick and easy and will catch most of ' the bad addresses than people type in. Function IsValidEmail(strEmail) Dim bIsValid bIsValid = True If Len(strEmail) < 5 Then bIsValid = False Else If Instr(1, strEmail, " ") <> 0 Then bIsValid = False Else If InStr(1, strEmail, "@", 1) < 2 Then bIsValid = False Else If InStrRev(strEmail, ".") < InStr(1, strEmail, "@", 1) + 2 Then bIsValid = False End If End If End If End If IsValidEmail = bIsValid End Function ' I made this a function just to get it out of the ' logic and make it easier to read. It just shows the ' form that asks for the input Sub ShowReferralForm(strPageName, strFromName, strFromEmail, strToEmail, strBody) ' I use script_name so users can rename this script witout having to change the code. %>
Seu nome:
Seu e-mail:
Para:
 
<% '

The Message to be sent:

'

Subject: < %= strSubject % >

'

Body: < %= strBody % >

End Sub ' This just shows our thank you message... probably didn't need to ' be a function, but since I made the form one I figured I'd do this ' for consistency. Sub ShowThanksMsg() %>

Sua mensagem foi enviada com sucesso. <% End Sub %>