<span>it is caused by A.overgrazing
</span>
        
             
        
        
        
Answer:
import java.util.*;
public class MyClass {
    public static void main(String args[]) {
        Scanner input = new Scanner(System.in);
        System.out.print("Input a word: ");
        String userinput = input.nextLine();
        for(int i =0;i<userinput.length();i+=2) {
            System.out.print(userinput.charAt(i));
        }
    }
}
Explanation:
This line prompts user for input
        System.out.print("Input a word: ");
This declares a string variable named userinput and also gets input from the user
        String userinput = input.nextLine();
The following iterates through every other character of userinput from the first using iteration variable i and i is incremented by 2
        for(int i =0;i<userinput.length();i+=2) {
This prints characters at i-th position
            System.out.print(userinput.charAt(i));
 
        
             
        
        
        
Answer:
i. This value was not accepted because we have 12 months and not 13.
ii. This is because the user entered the value for the day as value for the month.
Explanation:
i. Why was this not accepted?
This value was not accepted because we have 12 months and not 13. The user entered a value that was above the maximum value registered for the number of months in a year- which is 12.
ii. Why do you think this error occurred
This is because the user entered the value for the day as value for the month.
This could be because the user uses a date system different from that of the program. 
 
        
             
        
        
        
The CPU, or central processing unit, is the hardware that takes most of the load when running a program. It will perform complex calculations and execute every instruction as the program continues.
The GPU, or graphics procession unit, is the hardware that could also play a major roll in calculating the instructions to execute a program, though this depends on how graphically intensive the program is. For example, games would use a lot more GPU power than say a simple calculator application.