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

manish gms
manish gms
338 Points

should i write the entire code or just syntax

define string variables set value to it

Name.java
// I have setup a java.io.Console object for you named console
string firstname="manish";

Hi Manish,

I'm not entirely sure what you mean. Could you explain in a little more detail?

The code you've posted above is for the first part of the challenge; the only things wrong with it are that "string" should be "String" (as that's what the data type is called in Java), and "firstname" should be "firstName":

String firstName="manish";

Hope this helps,

Ajay

Hey Manish,

In Java we use the syntax String ( With an uppercase S ) to denote a String declaration as Ajay has said already, In Java we also have a variable naming convention (Not mandatory or anything but advised) where if we name a variable something we two words the second word has an Uppercase first letter.

Example:

String myName = "Manish";