Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Shekhar Shah
895 PointsNot sure
I tried the following for the question Define a string variable named
class Variable { class JavaTester { Variabe firstname; firstname.equals("name")
// I have setup a java.io.Console object for you named console
class
variable firstname;
firstname.equals("name");
2 Answers

Huzaifa Sajjad Malik
Courses Plus Student 10,823 PointsMate the question was to defined a variable of type string as name and then assign it with your own name.
String name="Shekhar Shah";
It will create a variable of type String which has is called name and it has your name stored in it. Strings are a data-type that can store all characters be it alphabet characters or numbers in the next videos you will learn more about other data-types until then enjoy with String.

Evans Owino
24,888 PointsHope this helps
// Step 1
String firstName = "Joe Bloggs";
// Step 2
console.printf("<YOUR NAME> can code in Java!");
// Step 3
console.printf("%s can code in Java!", firstName);