The answer is true they will have to be responsible
Incomplete question. I could only infer you are possibly referring to edhesive unit 8 questions. Here are a few sample questions;
1. Where does Python start?
2. To create the body of a function, we ____________ the code.
Answer:
1. Main Section
2. Indent
Explanation:
1. It is a common rule in Python programming language when coding for for it to begin at the first part of the Main Section.
2. Indenting a code involves creating space or jumping a line away from the margin of the text dialogue box, thus the code written there becomes the body of the function.
Answer:
result 1 = false;
result 2 = true;
Explanation:
result 1 = (43 < -77 && 1! = 10)
43 < -77 = false
1 != 10 = true
for any false && true logical operator, it returns false
result 1 = false;
false = 90 < -77 || -1 < 43
90 < -77 = false
-1 < 43 = true
for any false || true logical operator, it returns true
result 2 = true;