<span>Instance variables are declared private to prevent direct modification. Access to the variables is instead provided through methods. This practice is known as..
</span><span>c. encapsulation. It </span><span>is a mechanism of bundling the data (variables) and code acting on the data (methods) together as one.</span>
Answer:
for(var i=0; i<3; i++) {
penUp();
moveTo(100,120);
turnTo(180);
penDown();
moveForward(25);
}
Explanation:
The i variable is the loop dummy. The code block will be executed 3 times.