Answer :
1) The start function should be called 1 time when writing your program. When you click run, this function is activated. Every program needs a start function similar to function start ()
What is a function?
A function is a section of well-organized, reusable code that executes a single, connected action. Your application will be more modular thanks to functions, which also allow for significant code reuse.
You have already seen several functions like printf() and main (). These are referred to as built-in functions that the language offers, but we can also create our own functions, and this tutorial will show you how to do so in the C programming language.
2) a program that places a black circle on the screen with a radius of 35 in every place where the mouse is clicked.
function start(){
mouseClickMethod(drawCircle);
}
function drawCircle(e){
var circle = new Circle(35);
circle.setPosition(e.getX(), e.getY());
add(circle);
}
3. the code works and this code will output 1
Learn more about function
https://brainly.com/question/20476366
#SPJ1