Answer:
The following answer is written in Java Programming Language:
public class Salary { //define class
public static void main (String [] args) { //define main method
int wage = 20; //initialize an integer variable
/* Your solution are here */
System.out.println("Annual Pay is "+wage * 40 * 50); //print result
return;
}
}
Step-by-step explanation:
Here, we define the class "Salary".
Then, we define the void type main() function inside it we define an integer type variable "wage" and assign value to 20 and after that, we print the result.
After all, we close the main function and then class.