Create a command button (B6) and assign it to a code that writes the first 20 elements of the Fibonacci sequence in range D6:D25 (the first two elements of the sequence are 0 and 1; after that, each subsequent number is the sum of the two previous numbers). Run
EXPERT ANSWER Answer:- Program: Private Sub CommandButton1_Click()Dim a, b, c, i As Integera = 0b = 1Cells(6, 4) = aCells(7, 4) = b For i = 8 To 25c = a + bCells(i, 4) = ca = bb = cNext i End Sub Output: