Apex exercise
### Beginner's Guide to Creating Your First Apex Class Welcome to your first step into the world of Apex! In this tutorial, we'll guide you through creating a simple Apex class. Apex is a strongly-typed, object-oriented programming language used in Salesforce, and it's similar to Java. Don't worry if you're new to coding—we'll keep it straightforward. #### Step 1: Access Salesforce Developer Console 1. **Log in to Salesforce**: Use your Salesforce credentials to log in to your Salesforce instance. 2. **Open Developer Console**: Click on the gear icon (⚙️) in the upper right corner of Salesforce and select **Developer Console**. #### Step 2: Create a New Apex Class 1. **Open the Apex Class creation window**: - In the Developer Console, go to the top menu and click on **File** > **New** > **Apex Class**. 2. **Name your class**: - A prompt will appear asking you to name your class. Enter a simple name like `HelloWorld` and click **OK**. #### Step 3: Wri...