Multiple choice technology programming languages

Dim strOne strOne=String(3,"A") Msgbox strOne

  1. aaa

  2. A A A

  3. AAA

  4. A

Reveal answer Fill a bubble to check yourself
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.