# 1.3: Challenge Answers

## Bronze Challenge Answer *(Example)*

```csharp
namespace BasicTypesPractice
{
    class Program
    {
        static void Main(string[] args)
        {
            //BRONZE
            int lottoNumber;
            int yearGraduatedHighSchool = 1994;

            string fbPost;
            string reTweet = "Yes, I'll retweet that.";

            bool isMarried;
            bool isHappy = true;

            decimal studentLoanAmount;
            decimal bankAccount = 100.0M;

            float amountOfSnow;
            float temperature = 57.5f;

            double latitude;
            double oneThird = 3.33333333d;

            fbPost = "The Patriots are terrible!";

            Console.WriteLine(fbPost);
            Console.WriteLine(temperature);
            Console.WriteLine(oneThird);
        }
    }
}
```

## Silver Challenge Answer *(Example)*

```csharp
namespace BasicTypesPractice
{
    class Program
    {
        static void Main(string[] args)
        {
            //SILVER
            string fbPost;
            string reTweet = "Yes, I'll retweet that.";
            fbPost = "The Patriots are terrible!";

            Console.WriteLine(fbPost + " " + reTweet);
        }
    }
}
```

## Gold Challenge Answer *(Example)*

```csharp
namespace BasicTypesPractice
{
    class Program
    {
        static void Main(string[] args)
        {     
            //GOLD
            int bYear = Int32.Parse("1976");       
            Console.WriteLine("I was born in {0}.", bYear);
        }
    }
}
```

[Next:](/dotnet-101-csharpfundamentals/part-1-data-types/1.4-strings.md) Strings


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://eleven-fifty-academy.gitbook.io/dotnet-101-csharpfundamentals/part-1-data-types/1.3-challenge-answers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
