Dim strOne strOne=String(3,"A") Msgbox strOne
C
Correct answer
Explanation
In VB/VBScript, String(number, character) creates a string by repeating the character the specified number of times. String(3, 'A') produces 'AAA' by repeating 'A' three times. The function returns a single concatenated string without spaces between repetitions.