Answer:e
Explanation:
Because it will automatically work
Answer:
The correct answer to the following question will be "Copyright".
Explanation:
This is a form of an intellectual estate which gives the publisher exclusive privileges to print, distribute, and use.
- The above ensures that almost no-one else can use or publish certain material generated by the author without any of the author's permission.
- When a person makes work through his or her job, the company holds the copyright.
So, it's the right answer.
Answer:
The while loop is executed one more time when num_insects is 64. It gets doubled and 128 gets printed. Then the while loop is not executed anymore since 128 exceeds 100.
So the reason you see 128 is because the multiplication by 2 happens inside the loop before you print. You enter it with 64, but by the time you get to the print statement, it was already multiplied.
The solution is to switch the print and the multiply:
num_insects = 8 # Must be >= 1
while num_insects <= 100 :
print(num_insects,'', end="")
num_insects = num_insects * 2
This has one added advantage that the very first print statement outside the loop can be removed.
true
-------------------------------------------------------
Yes because someone could hack you accounts and destroy your life doing so. But there are ways to avoid that like a vpn or a strong passwords