Answer:
Physical science is the study of the inorganic world. That is, it does not study living things. (Those are studied in biological, or life, science.) The four main branches of physical science are astronomy, physics, chemistry, and the Earth sciences, which include meteorology and geology.
Answer:
View
Explanation:
Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.
In Microsoft Word 2019, the users are availed with the ability to edit the word document in the following view type;
I. View Mode
II. Print Mode
III. Drift Layout
The Microsoft Word developers has made it easy for their users to automate the tasks used frequently through the creation and execution of macros.
Basically, macros comprises of commands and instructions which may be grouped together as a single command to automatically execute a task. You can locate the Macro feature in the View tab of Microsoft Word.
Answer:
The operation of 6*x only executes if x is greater or equal to 0, since x=-10 and -10 is less than 0, the operation does not execute. For this reason, the value of y using this code is None.
Explanation:
In python a function is defined with the syntaxis:
def function(x):
the operation to execute (x)
value to return
In this case, the function is foo and the parameter is x:
def foo(x):
if x>= 0:
return 6*x
The code starts by assigning a value to x. Then, the code asks if the value of x is grater or equal to 0, if this condition is meet, then the code returns the value of 6 times x, if not, then the code does not return a value. In this case, x is -10 and this value is not grater or equal to 0. Given that the condition is not met, then the code stops executing and the value of y is none.
Answer:
i think its slideshow tab
Explanation:
tell me if im right