What is the purpose of the CInt function? It is used to convert an integer value
ID: 3787626 • Letter: W
Question
What is the purpose of the CInt function? It is used to convert an integer value to a string. It is used to convert a double value into an integer value. It is used to change a string of digits into an integer value. It is used to truncate the fractional component of a double value. Which property stores the color used for the letters of a Label? Back Color Fore Color Font Text When the Text property of a Form is changed, the entry appears in the title bar of the window. True False How should the average of values 70, 72, 89, and 90 be computed? Assume d is a Double variable. d = 70 + 72 + 89 + 90/4 d = (70/72) + (89 + 90)/4 d = (70 + 72 + 89 + 90)/4 All choices a) - c) are correct.Explanation / Answer
The answers to the following questions don't need any explainations. So I am just providing the correct answers. Hopefully the are gonna help you.
7) The answer is "c" which is "it is used to change a string of digits into an integer value."
for example :
response.write(CInt("300") & "<br />")
response.write(CInt("-67") & "<br />")
Will give output as :
300
-67
8) The answer is "b" which is "ForeColor"
9) The answer is "a" which is True
10) The answer is "c" which is (70+72+89+90)/4
as d= 70+72+89+90/4 will give 253.5 which is not average value, same goes for this as
d = (70+72)+(89+90)/4 will give 186.5 which is not average value.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.