Manage multiple directories – Manage Azure identities and governance – AZ-104 Study Guide

Manage multiple directories Each Entra ID tenant (or directory) is managed as an independent resource. There is no parent- child relation between directories, although users from one directory can be invited to another directory through Entra External Identities features. Because each tenant is an independent resource, directories can be created and deleted as needed. This also means […]

Test Data Factory – Testing – Salesforce Certified Platform Developer I Study Guide

9.3  Test Data Factory Let’s create our test data factory for the given ContactTrigger test class; follow these steps: Step 1: Create the new class ContactFactory in your Developer Console. @isTest public class ContactFactory { public static Contact createContact(String firstName, String lastName) { Contact newContact = new Contact(); newContact.FirstName = firstName; newContact.LastName = lastName; return […]

Internet Protocol Addressing Basics – Introduction to Networking – 200-301 Study Guide

Internet Protocol Addressing Basics IP defines addresses for several important reasons. First, each device that uses TCP/IP—each TCP/IP host—needs a unique address so that it can be identified in the network. IP also defines how to group addresses together, just like the postal system groups addresses based on postal codes (like ZIP codes in the […]

Interpret access assignments – Manage Azure identities and governance – AZ-104 Study Guide

Interpret access assignments To manage access (role) assignments, you can use the Azure portal, the Azure CLI, Azure PowerShell, Azure SDKs, or the Resource Manager REST APIs. The following section describes how to manage role assignments using the Azure portal. In the Azure portal, the Access Control (IAM) blade is used to manage access to resources, and […]

Note – OSPF Configurations and Verifications – Networking – 350-601 Study Guide

Note Use the ip ospf mtu-ignore command for OSPFv2 or ipv6 ospf mtu-ignore command for OSPFv3 to disable MTU mismatch detection on an interface. By default, OSPF checks whether neighbors use the same MTU on a common interface. If the receiving MTU is higher than the IP MTU configured on the incoming interface, OSPF does […]

Create a custom role – Manage Azure identities and governance – AZ-104 Study Guide

Create a custom role In addition to built-in roles available in Azure, you might need to create a custom role to provide a set of permissions that are not available in any of the built-in roles. Custom roles can be created and assigned through the Azure portal, Azure PowerShell, Azure CLI, and REST API. This […]

Reviewing Primitive Assignments – Working with Binary Arithmetic Operators – 1Z0-829 Study Guide

Reviewing Primitive Assignments See if you can figure out why each of the following lines does not compile: int fish = 1.0; // DOES NOT COMPILE short bird = 1921222; // DOES NOT COMPILE int mammal = 9f; // DOES NOT COMPILE long reptile = 192_301_398_193_810_323; // DOES NOT COMPILE The first statement does not […]

Preserving traceability and business rule context – Master Data Management – Salesforce Certified Data Architect Study Guide

Preserving traceability and business rule context In line with our establishment of a golden record, or single source of truth, it is important that an MDM strategy plays nicely with existing business rules, and changes to data are preserved throughout the organization. For example, the process of creating a bank account in a connected system […]

Understand how RBAC works 2 – Manage Azure identities and governance – AZ-104 Study Guide

Understand how RBAC works The specific permissions that are applied to a resource with RBAC are defined in a role definition. A role definition contains the list of permissions—or declared permissions—and those permissions define what actions can or cannot be performed against a type of resource, such as read, write, or delete. Role definitions, or roles, can be […]

Assigning Values – Working with Binary Arithmetic Operators – 1Z0-829 Study Guide

Assigning Values Compilation errors from assignment operators are often overlooked on the exam, in part because of how subtle these errors can be. To be successful with the assignment operators, you should be fluent in understanding how the compiler handles numeric promotion and when casting is required. Being able to spot these issues is critical […]