Answer:
It reduces strength.
Explanation:
It not desirable to produce concrete mixtures of a higher consistency than normal because the strength of the concrete decreases. Consistency plays an important role in the determination of strength of concrete. Less water than normal quantity in concrete increases the consistency but decreases strength due to incomplete chemical reaction while on the other hand, adding more water would increase water-cement ratio and reduces consistency as well as strength of the concrete so that's why necessary amount of water and cement should be added to get higher strength.
Answer:
Integrated pest management
Explanation:
- Integrated pest management can reduce the exposure of farmworkers and nearby residents to toxic chemicals.
D. dahil ito ay INAASAHAN NA BABALIK SA NORMAL ANG SUPLAY NG ISANG PRODUKTO SA PAMILIGAN SA SANDALING BUMUTI ANG PANAHON.
Explanation:
YEA ITS REAL NMAN KASE MAY MGA TAO NA NINANAKAW ANG MGA DAGAT OR LIKAS NA YAMAN NATIN NA PINAGKUKUNAN NATIN NG MGA MAKAKAIN NATIN SA PANG ARAW ARAW <em> </em><em>KUNG </em><em>IKAW </em><em>AY </em><em>NASA </em><em>TABING </em><em>DAGAT.</em><em> </em>
<em>I </em><em>THINK </em><em>IM </em><em>CORRECT:</em><em>)</em>
The remove_sort_reverse function takes a list, removes all "s" in the list elements, sorts and then reverses the remaining elements
<h3>The actual program</h3>
The program in Python, where comments are used to explain each line is as follows:
#This defines the function
def remove_sort_reverse(myList):
#This iterates through the list
for i in range(len(myList)):
#This removes all the s in the list elements
myList[i] = myList[i].replace("s","")
#This sorts and reverses the list elements
myList.sort(reverse=True)
#This returns the updated list
return(myList)
Read more about Python functions at:
https://brainly.in/question/10211834