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 trial

Java Java Basics Getting Started with Java Strings, Variables, and Formatting

Priya Patil
Priya Patil
2,471 Points

I wrote program as mentioned below String FirstName = "priya"; console.printf("my name is%s",FirstName); no output??

String FirstName = "priya"; console.printf("my name is%s",FirstName);

Name.java
// I have setup a java.io.Console object for you named console
String FirstName = "priya";
console.printf("my name is%s",FirstName);

3 Answers

Michael Hess
Michael Hess
24,512 Points

Hi Priya Patil,

Everything is looking okay except for two things:

  1. the firstName variable should be in camelCase. Camel case is a naming convention in which several words are joined together and the first letter of every word is capitalized.

  2. The challenge wants us to print "YOUR NAME can code in Java!".

The end result is:

String firstName = "priya";
console.printf("%s can code in Java!", firstName);

If you have any other questions feel free to ask! Hope this helps!

Hi Priya,

firstName is case sensitive as are a lot of methods and functions in Java, so you have to change FirstName to firstName, the camel case representation. And then the 2nd string it tells you to print out is "<YOUR NAME> can code in Java!" where <YOUR NAME> should be a placeholder for your name. You wrote "My name is%s". Your code should be:

// I have setup a java.io.Console object for you named console
String firstName = "priya";
console.printf("%s can code in Java!", firstName);