What is output by the following code? for x in range(7, 16): print(x * 2, end=" ") Group of answer choices 14 16 18 20 22 24 26 28 32 16 18 20 22 24 26 28 32 14 16 18 20 22 24 26 28 30 16 18 20 22 24 26 28 30

Respuesta :

Input:-

[tex]\tt for\:x\:in\:range(7,16):[/tex]

[tex]\tt print(x*2,end"")[/tex]

Output:-

[tex]\tt 14,16,18,22,24,26,28,30,32[/tex]

The loop will start from 7×2=14 to 16×2=32