# 2.3: Challenge Answers

In this module we'll give possible answers to the challenges from the last module.

## BRONZE ANSWER

```csharp
int value = 11;
if (value >= 10)
{
    Console.WriteLine("The value is greater than or equal to 10");
}
```

## SILVER ANSWER

```csharp
string password = "LetMeIn1234!";

if(password == "LetMeIn1234!"){
    Console.WriteLine("Welcome user!");
} else {
    Console.WriteLine("Something went wrong");
}
```

## GOLD ANSWER

```csharp
Console.WriteLine("How are you feeling today from 1-5?");

string feelingNumber = Console.ReadLine();

if (feelingNumber == "5")
{
    Console.WriteLine("That's great to hear!");
}
else if (feelingNumber == "4")
{
    Console.WriteLine("Good stuff!");
}
else if (feelingNumber == "3")
{
    Console.WriteLine("Hope things get better!");
}
else if (feelingNumber == "2")
{
    Console.WriteLine("Oh. Sorry to hear that.");
}
else if (feelingNumber == "1")
{
    Console.WriteLine("Dang. We hope your day gets better!");
}
else
{
    Console.WriteLine("Sorry, we don't understand. Come back later.");
}
Console.ReadLine();
```


---

# 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-2-boolean-logic-and-conditionals/2.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.
