Solved

Choose a New, More Descriptive Name for the WhatIsIt Function

Question 17

Multiple Choice

Choose a new, more descriptive name for the WhatIsIt function based on the result of the code below. Function WhatIsIt(ByVal intRepeat as Integer) as Integer
Dim intResult as Integer = 1
Dim intCount as Integer
For intCount = 1 to intRepeat
IntResult = intResult * 2
Next intCount
Return intResult
End Function


A) PowersOfTwo
B) SquareRootsOfTwo
C) MultiplyByTwo
D) TwoPlusTwo

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions