1.Which of the following is one of the tools used by a Python IDE that helps prevent syntax errors?

2.Julianna wants to put data inside a variable. Which symbol should be use
3.Jorge is using Python 3 as a calculator. Jorge wants to find the product of 321 and 408. What should Jorge type?
4.If you want the words “My puppy is a poodle” to appear in the output box, what Python code should you use?
5.“Hello, world” is what kind of data?
6.Why is the print statement considered a function?
7.Mateo wants the words “It’s snowing!” to appear in the output box and typed print (It’s snowing). This didn’t work. What needs to be added to the code?
8.Mirembe created some code so that Python 3 can be used as a calculator to multiply 67 by 15. The code reads print 67 * 15, but when it’s run, a syntax error results. What correction should Mirembe make?
9.Which of the following was (and still is) used by computer programmers as a first test program?
10.Montel wants to use a certain street name as the data for a variable called “home.” Which of these lines of code should Montel use?
11.Miranda is using Python 3 as a calculator and wants to divide 1374 by 3. What should Miranda type?
12.What is the purpose of an assignment statement?
13.Francesca wants to create a program that will produce the phrase “Hello, world” on the screen. Which of these functions should Francesca use?
14.Which of these symbols is the assignment operator?
15.Alejandro decided to save some time by copying and pasting code into the editor, but the program didn’t work. What is the most likely explanation for this?

1. Syntax highlighting

2. The equal sign '='
3. 321 * 408
4. print("My puppy is a poodle")
5. String data
6. It is a built-in function in Python that is used to print the output.
7. The words "It's snowing!" need to be enclosed in quotation marks. So it should be print("It's snowing!").
8. The asterisk symbol '*' should be used for multiplication. So the correction should be print(67 * 15).
9. The "Hello, world" program is commonly used as a first test program.
10. home = "certain street name"
11. Miranda should type 1374 / 3.
12. The purpose of an assignment statement is to store a value or result in a variable.
13. Francesca should use the print function to display "Hello, world" on the screen.
14. The assignment operator is the equal sign '='.
15. The copied code may contain errors or may not be compatible with the current program environment.