Marco is looking for a software that he can use to type and run code which of these does he need? A word processor a spreadsheet an integrated development environment Or a software development manager. A group of characters enclosed in quotes is called? A string literal A data type a word or a statement. What is the output after typing 10 + 5 into a python console? An error message because the console is for output an error message because the print statement is missin g10 plus 5 equals 15 Or 15. Which of these is not a data type built into python? String list integer or float. Which of these statements about python functions is not true Each function has a name Each function is a unit of code each function can be reused or each function has to be imported?

1 answer

  1. Marco is looking for a software that he can use to type and run code. Which of these does he need?

    • Answer: An integrated development environment (IDE).
  2. A group of characters enclosed in quotes is called?

    • Answer: A string literal.
  3. What is the output after typing 10 + 5 into a Python console?

    • Answer: 15 (the console will display the result of the expression).
  4. Which of these is not a data type built into Python?

    • Answer: All the options provided (String, List, Integer, Float) are built-in data types in Python; however, "List" is sometimes seen as unique compared to the others as it is a more complex data structure. A better clarification might be needed, but as stated, none of them are "not built-in".
  5. Which of these statements about Python functions is not true?

    • Answer: Each function has to be imported (this is not true; functions do not necessarily need to be imported if they are defined in the same script/module).