Answer:
d
Explanation:
because all in one question form
Answer:
false
Explanation:
because a lot of times they are downloads without the disk
Answer:
Click the Home tab, click Format, click Rename Sheet, type the name, and press Enter
Explanation:
im not really sure but i think this is the answer
have a good day
Answer:
The value of sum is 66
Explanation:
i = 1
sum = 0
while (i <= 11) {
sum = sum + i;
i++;
}
i = 1
- sum = sum + i
- sum = 0 + 1
- sum = 1
i = 2
i = 3
i = 4
i = 5
i = 6
i = 7
i = 8
i = 9
i = 10
i = 11
i = 12 --> does not comply with the condition "i < = 11", the while loop is over