Answer:
import java.util.Scanner;
public class LabProgram {
   public static void main(String[] args) {
       Scanner scnr = new Scanner(System.in);
       int inputYear;
       boolean isLeapYear;
       isLeapYear = false;
       inputYear = scnr.nextInt();
       // If a year is divisible by 400,  then it is a leap year
       if (inputYear % 400 == 0)
           isLeapYear = true;
       // If a year is divisible by 100,  then it is not a leap year
       if (inputYear % 100 == 0)
           isLeapYear = false;
       // If a year is divisible by 4,  then it is a leap year
       if (inputYear % 4 == 0)
           isLeapYear = true;
       if(isLeapYear)
           System.out.println(inputYear + " is a leap year.");
       else
           System.out.println(inputYear + " is not a leap year.");
   }
}
Explanation:
- Take the year as an input from user and store it to inputYear variable.
- If the year is a century year, check if the year is divisible by 400 ( the year must be evenly divisible by 400 ),  then set the boolean isLeapYear to true. If a year is divisible by 100,  then set the boolean isLeapYear to false. If a year is divisible by 4,  then set the boolean isLeapYear to true.
- Check if isLeapYear is true, then print that it is a leap year. Otherwise, print that it is not a leap year.
Output:
1712
1712 is a leap year.
 
        
                    
             
        
        
        
<span>14. A mesh represents a(n) _____ object if its faces enclose a positive and finite amount of space. (1 point)
odd
connected
simple
convex
15. Which of the following is the 3-D view port? (1 point)
the standard layout used for new files
the polygon viewing on the default screen
straight line segments connecting two vertices
a single static image in 3-D
The answer for number 1, should be:
SOLID
</span><span>A mesh represents a solid object if its faces enclose a positive and finite amount of space
</span>
The answer for the second question is:
a single static image in 3-D
        
                    
             
        
        
        
Answer:
Different player types require different games.
Explanation:
People like and prefer different games. Some like FPS, MMORPGs, ...