Java! Need help with terminology
Badly need help with this matching. All the best to everyone who can help. I passed a terrible quiz, but this question is the only one that I can't take. public class Person { private char gender; static int number; //... public static void main(String[] args) { Person person; //... } public static void callPerson(int hours) { double payRate = 24.99; } } The code above compiles okay. Refer to it to complete this matching exercise. number is ____ hours is ____ gender is ____ person is _____ payRate is _____ Options: 1. local reference variable 2. class variable 3. instance variable 4. parameter 5. local primitive variable