Answer:
natural fertilizers such as compost, green maure, animal manure
Explanation:
The Green Revolution was a movement whose main goal was to drastically increase the agriculture yields in every location. They accomplished this by using hybrid seeds, irrigation, chemical fertilizers, pesticides, fossil fuels, farm machinery, and high-tech growing and processing systems, all of which greatly contributed towards this goal. Therefore the one thing that was not part of the Green Revolution's innovations was natural fertilizers such as compost, green maure, animal manure, mainly due to the fact that these were the traditional use that would lead to the same agriculture yields.
Answer:
He/She can refer the physical/digital kanboard ,which is maintained by the team
Answer:
it is a complete routine of life without it we cannot do time management
Explanation:
mark me brainliest ❤
Answer:
// here is code in java.
import java.util.*;
class Solution
{
// main method of class
public static void main (String[] args) throws java.lang.Exception
{
try{
// declare variable
double caffeine;
// scanner object to read input from user
Scanner scr=new Scanner(System.in);
System.out.print("Enter the initial amount of caffeine:");
// read the initial amount of caffeine
caffeine=scr.nextDouble();
// calculate amount of caffeine after 6,12,18 hours
for(int i=1;i<=3;i++)
{
System.out.println("After "+ i*6+" hours:"+(caffeine/2)+" mg");
// update the caffeine after every 6 hours
caffeine=caffeine/2;
}
}catch(Exception ex){
return;}
}
}
Explanation:
Create a variable "caffeine" to store the initial amount of caffeine given by user. Run a loop for three time, it will calculate the amount of caffeine left after every 6 hours.First it will give the amount of caffeine left after 6 hours, then caffeine left after 12 hours and in last caffeine after 18 hours.
Output:
Enter the initial amount of caffeine:100
After6 hours:50.0 mg
After12 hours:25.0 mg
After18 hours:12.5 mg
technically, anything that is copyright protected. but the answer that best describes the kinds of online items that are usually protected by copyright law? the answer is D. Most media work that is available for money
Hope this helps!
-SchoolIsBlaaa