ID 1664056 Banca NC-UFPR Órgão ITAIPU BINACIONAL Ano 2015 Provas NC-UFPR - 2015 - ITAIPU BINACIONAL - Computação ou Informática - Sistemas Disciplina Programação Assuntos Linguagens de programação Visual Basic Em relação a VBA, qual é o valor retornado pela função Val(“2 4 and 57")? Alternativas 2 24 2457 81 “and" Responder 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