Answer:A)pollution in lakes and rivers
Explanation:A has the least impact on the weather since it doesnt pollute the air, it only pollutes the environment around the lakes and rivers that are polluted. i dont need brainly you should give it to somebody else :)
Using a windows computer, to make a window wider, you would move the pointer until it changes to the horizontal resize shape and then you drag the cursor which way you want it to expand
Answer:
Jake should first clicks the Design tab.
Please note the answer given is based on Microsoft Powerpoint version 2016.
Explanation:
In Microsoft Powerpoint (PPT), we can flexibly choose any picture and add it as a slide background.
To do so, we just need to look for the "Design" tab on top of the PPT and click on it.
We shall see there is a "Format Background" option shown in the top right corner.
Next, click the "Format Background". We shall see there are several more options displayed:
- Solid fill
- Gradient fill
- Picture or texture fill
- Pattern fill
Choose the third option "Picture or texture fill".
Click the button "File..."
Pick a picture from our computer and click "insert"
Finally, the selected picture is added to the slide as a background
The correct answer is A. Magma emplacement.
Magma emplacement is not a sedimentary structure<em>.Sedimentary structures are termed as features which are being formed during the time of deposition.</em> Sedimentary are being characterized by the way of bedding which is known to occur when different sizes of particles are being deposited on top of each other.
Examples of sedimentary structures include, ripple marks, graded bedding, and cross bedding, mud cracks.
Ripple marks which are symmetrical are found in the beaches and the ones which are asymmetrical are found in the wind which is found in the desert or in a river.
Answer:
Using the Python Programming Language:
def isRed(myString):
if "red" in myString:
return True
else:
return False
Explanation:
The function definition is given above. To output the result of calling this function, we declare a string variable and call the function inside a print statement. See the two lines of code below:
myString= "My house is coloured red"
print (isRed(myString))
Notice that we defined the function called isRed to receive a string as a parameter, Then using the in keyword with an if statement, we check for the presence of the word 'red' in the string that is passed as argument to the function, the function will then return True if the word 'red' is present or False if it is not.