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 trialAdam Bell
1,176 PointsHello. I'm in the Java program and I'm taking my first challenge task. But I'm confused as to what I'm being asked..
I have to "define" a string variable...
// I have setup a java.io.Console object for you named console
2 Answers
Marcus Eley
16,213 PointsHello Adam,
When they ask you to define a variable, like in this case a string variable, it means they want you to set it to a value. For instance, setting an integer variable would look something like this:
int integerVariable = 12;
When they ask you to define a string variable what they are really looking for is you to set a string variable to a value. Here is an example:
String myName = "Marcus";
I hope that helps,
Marcus
Adam Bell
1,176 PointsHey Marcus. Thanks a lot!!!