Answer: you're correct
Explanation:
that's the only one that has privacy and safety in mind;
password-protected sites are important for keeping your account & info safe
your age and appearance is private and personal information
posting photographs of yourself can be unsafe
so B is right
Why is a repeat command helpful when programming a turtle?
A. it gives input B. it engages memory C. it saves time when writing code D. it rotates objects
Answer:
C. it saves time when writing code
Explanation:
A repeat command (also known as a loop) is a programming statement that allows a block of code to be executed repeatedly for a specified number of times. When programming a turtle, a repeat command can be very helpful because it allows the same set of commands to be executed multiple times without having to write them out repeatedly. This can save a lot of time and make the code much shorter and easier to read.
For example, if a programmer wants a turtle to draw a square, instead of writing out the commands to move the turtle forward, turn right, move forward, turn right again, and so on, they can use a repeat command to tell the turtle to perform those same commands four times. This makes the code much more efficient and easier to read, and can help prevent errors that might occur if the programmer had to write out the same commands multiple times.
Answer:
c
Explanation: