Cram Quiz 2 – Networking and Connectivity – SOA-C02 Study Guide

Cram Quiz Answer these questions. The answers follow the last question. If you cannot answer these questions correctly, consider reading this section again until you can. 1. You are examining a route table in your VPC and find the following route entry: “Destination : 10.0.0.0/24 and Target : Local”. What type of route is this? A. […]

DML Statements and Operations – Data Manipulation Language (DML) – Salesforce Certified Platform Developer I Study Guide

5.1  DML Statements and Operations DML refers to the set of statements and operations that you can use to interact with records in the Salesforce database. DML operations are used to create, retrieve, update, and delete records in various Salesforce objects, such as custom and standard objects like accounts, contacts, opportunities, and more. Salesforce provides […]

Passing Parameters to a Java Program – Building Blocks – 1Z0-829 Study Guide

Passing Parameters to a Java Program Let’s see how to send data to our program’s main() method. First, we modify the Zoo program to print out the first two arguments passed in: public class Zoo { public static void main(String[] args) { System.out.println(args[0]); System.out.println(args[1]); } } The code args[0] accesses the first element of the […]

Important note – Evaluating and Optimizing Models – MLS-C01 Study Guide

Important note Of course, grid search cannot guarantee that you will come up with your target performance. That depends on the algorithm and the training data. A common practice, though, is to define the values for testing by using a linear space or log space, where you can manually set the limits of the hyperparameter […]

CloudWatch Alarms – CloudWatch and CloudWatch Metrics – SCS-C02 Study Guide

CloudWatch Alarms With the metrics that CloudWatch provides, the service also allows you to monitor metrics and events that can automatically initiate actions (such as sending out an SNS notification) when certain conditions are met, in near real time. CloudWatch alarms can be used for a multitude of purposes, including detecting unusual behavior or performance […]

Summary – Ensuring Business Continuity – SAP-C02 Study Guide

Summary In this chapter, you learned the main differences between High Availability and Disaster Recovery. You reviewed how to prepare for a disaster and which major strategies are available in the cloud. You also went through the various AWS services that can support each of these strategies. Finally, this chapter emphasized the importance of testing […]

Querying and Searching CloudWatch Logs – CloudWatch and CloudWatch Metrics – SCS-C02 Study Guide

Querying and Searching CloudWatch Logs CloudWatch Logs provides you with a few different search capacities to efficiently analyze your log data and search through your log files. These capacities include the following: The following section presents a simple scenario for searching through log files stored in CloudWatch Logs. Performing a Search in CloudWatch Logs Go […]

Direct Connect Gateway – Network Implementation – ANS-C01 Study Guide

Direct Connect Gateway The AWS Direct Connect gateway simplifies your Direct Connect architecture. Traditionally with Direct Connect, a separate connection would need to be established from your data center to each AWS region you wanted to connect to. If you needed to connect to two different regions, for example, since DX is a regional service, […]

Model optimization – Evaluating and Optimizing Models – MLS-C01 Study Guide

Model optimization As you know, understanding evaluation metrics is very important in order to measure your model’s performance and document your work. In the same way, when you want to optimize your current models, evaluating metrics also plays a very important role in defining the baseline performance that you want to challenge. The process of […]

do-while Loop – Operators and Control Statements – Apex Programming – Salesforce Certified Platform Developer I Study Guide

do-while Loop: The do-while procedural loop is similar to the while loop, but it executes the code block at least once, regardless of whether the condition is true or false. It’s similar to the while loop, but with a key difference: the do-while loop always executes its block of code at least once before checking […]