Misti forgot to include arguments inside of a function call for a function that requires three arguments. What will happen?

She will get a type error.

Her program will continue running as usual.

Her program will fill in default values for the arguments.

She will get a name error.

She will get a TypeError.

If Misti forgot to include arguments inside of a function call for a function that requires three arguments, she will likely get a "TypeError" when running her program. This error occurs because the function is expecting a certain number of arguments to be passed, but Misti did not provide them.

To get the answer, Misti can refer to the documentation or source code of the function to determine if it requires any arguments. If the function does require arguments, she can check how many arguments are needed and ensure that she includes all of them in the function call.

She will get a TypeError.