What is String variable? - A Java string is a sequence of characters
For e.g. String greeting;
String can be assigned using "=" symbol: String greeting = "Hello!";
You will find exercise in package: /java-gyk-day1/src/com/swedbank/javagyk/homework
P.S. Keep the naming convention for variables! Use camelCase :)
1. Create a main method
2. Create a String variable for your first name and assign value for it
3. Create a String variable for your last name and assign value for it
4. Create a String variable for your job role and assign value for it
5. Print out the sentence like: Hello, I'm Benas Skirmantas, I'm Software Engineer
A couple of String variables could be printed out using "+" operator