SóProvas


ID
1664056
Banca
NC-UFPR
Órgão
ITAIPU BINACIONAL
Ano
2015
Provas
Disciplina
Programação
Assuntos

Em relação a VBA, qual é o valor retornado pela função Val(“2 4 and 57")? 

Alternativas
Comentários
  • Retorna os números contidos numa cadeia de caracteres como um valor numérico do tipo apropriado.

     

    Dim valResult As Double

    ' The following line of code sets valResult to 2457.

    valResult = Val("2457")

    ' The following line of code sets valResult to 2457.

    valResult = Val(" 2 45 7")

    ' The following line of code sets valResult to 24.

    valResult = Val("24 and 57")

     

    https://msdn.microsoft.com/pt-br/library/k7beh1x9(v=vs.90).aspx

     

    Gabarito: b)

  • The Val function stops reading the string at the first character that it can't recognize as part of a number.

    https://docs.microsoft.com/en-us/office/vba/language/reference/user-interface-help/val-function