Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialShekhar 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);