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

I really don’t understand the question

I understood the lesson of variables and strings in java but I don’t understand the first question of the test

Name.java
//

1 Answer

Linda de Haan
Linda de Haan
12,413 Points
  1. Define a string variable named firstName that stores your name. Set the value to your name.

    String firstName = "Sama";
    

    firstName is the name of the String variable. The value it stores is "Sama".

  2. Call the printf method on the console object and make it write out "<YOUR NAME> can code in Java!"

    System.out.printf("Sama can code in Java!");
    

    printf is a System.out method that writes to the console. You can use formats to print stuff. The above just prints a line. Below we use "%s" to print your name. You can do the same printing digits with %d and you'll also see %n which means a new line.

  3. Now replace <YOUR NAME> in the console.printf expression with the firstName variable using the string formatter.

    System.out.printf("%s can code in Java!", firstName);