Answer:
i think it should slow down
Explanation:
i think this because people are always on social media so they should put down their devices and interact with others and sometimes they are violent on their devices so it would be better if people did stay off their devices for a little bit.
Answer:
See explaination
Explanation:
E-R diagram:
Entity Relationship Diagram, also known as ERD, ER Diagram or ER model, is a type of structural diagram for use in database design. An ERD contains different symbols and connectors that visualize two important information: The major entities within the system scope, and the inter-relationships among these entities.
Please kindly check attachment for for the ERD of the question asked.
Answer:
Yes, we can.
Explanation:
We can combine with the arithmetic and the concatenation operators to provide augmented assignment operations in the programming language Python.
This mean we can abbreviate expressions like n = n + 1
For example:
n += 10 this is equal to n = n + 10
n += "example" this is equal to n = n + "example"
In this example we have
variable = variable operator expression equal to variable operator = expression.
These arguments are often used in Python's loops.