I am attempting to learn java in a training program, but am finding myself bottled up on some of the simpler things (like jargon).
One of my assignments requests the following: create an immutable class with two String variables. Then we are to instantiate this class.
public class Assignment {
    public final class Immutable {
        String one;
        String two;
    }
    public static void main(String[] args) {
        // Do I instantiate my class here?  
    }
}
For some reason the concept of "class instantiation" is escaping me :( Any help is appreciated on such a simple matter
 
     
     
     
     
    