Note: I am putting these here because students have asked them in the past, this is not a reflection of what will be on quizzes.
A: This isn't as easy as it would be in something like an array. For a String first you will have to break apart the String using substring and then concatenate the pieces back together with the new letter.
A: With Casting. See the video here.
A: Surprisingly it is easier to convert a char to an integer, see Casting, than it is to convert a String variable into a char. This is because Strings are Object types and not primitive types. You can however concatenate a char onto the end of a String or get the char at a specific index or location in a String.
A: Many languages use the same types as Java just with different names, for example in SQL a String is a "varchar(225)" with the number representing how many letters there can be. In other languages you don't have to specify the type at all when you make a variable and the compiler or interpreter guesses what type of variable it is from what value it holds.
A: A long is used when the value that is being held has too many digits to fit into a normal integer. A phone number for example is too many digits to fit into a integer. Other variable types like float and short aren't used much any more, they were used when there wasn't enough space on computers but with modern computers we are less concerned with the space taken up by number values.
A: A primitive type has only one attribute, one way of describing that thing. A char vs. a String is an example of this. A String has different values at different positions and a length while a char only has one value, you can't describe a character value past that single value but you can say several things about the String.
A: All primitive types do start with a lower case letter (e.g. int, char) and all Object types that are built into the language, like String, start with an upper case letter. You can however make your own object types and while it is good practice to create objects with upper case letters it is not required.