Answer:
A) int monthofYear = 11;
B) long companyRevenue = 5666777;
C) int ClassTicketPrice = 6000;
D) long totalPopulation = 1222333;
Explanation:
A) The variable <em>monthofYear </em>is initialized with value 11. The data type of the variable is int as 11 is an integer value.
B) The variable <em>companyRevenue </em>is initialized with value 5666777. The data type of the variable is long as 5666777 is a large value and need more bytes to store in the memory.
C) The variable ClassTicketPrice is initialized with value 6000. The data type of the variable is int as 6000 is an integer value.
D) The variable <em>totalPopulation </em>is initialized with value 1222333. The data type of the variable is long.
Note: - The programming language (C, C++, JAVA, etc) in which the variables are declared is a case sensitive language that is no special symbol and white spaces are allowed while declaring the variables.