question: 2\nif i am creating a function that is going to draw 2 squares, which of the following would be…

question: 2\nif i am creating a function that is going to draw 2 squares, which of the following would be the best name option?\ndraw_two_squares\ndraw_squares\ndraw_shapes\n2_squares
Answer
Brief Explanations:
A good function name should clearly describe what the function does. "Draw_Two_Squares" specifically indicates that the function will draw two squares. "draw_squares" is too general as it doesn't specify the number of squares. "draw_shapes" is even more general and doesn't mention squares at all. "2_squares" is not a descriptive verb - based name for a function that performs an action of drawing.
Answer:
Draw_Two_Squares