Skip to content
Cloud Study Exams
  • Exam List
  • PRICING
  • Share Your Success Story
  • Contact Us
  • FAQ
  • Login
  • Register

Salesforce Certified Advanced Administrator 1-10

表示モード
画像位置
文字位置
理解度の自動記録
STATUS FILTER

Choose confidence levels to display

Loading...

Q1Salesforce Advanced Administrator

Q1. The security team at AW Computing has requested that audit information about accounts be recorded in a new custom object called “Audit”.
The audit records must be retained for 10 years and be accessible only to members of the audit team.
Which feature should be used?

Show answer
Correct answer: A. Grant account login access
This question requires both long-term (10-year) retention of audit data and access control at the same time.
Salesforce’s standard log features (login history and the setup audit trail) have short retention periods (roughly a few days to six months), so they cannot satisfy this requirement on their own.
Therefore, a mechanism to store audit information independently is required.
By using the account login access feature to let administrators review the actions of the audited users, and combining it with recording into the custom object “Audit”, both long-term retention and access control can be achieved.
For this requirement, a design that stores data in a custom object for long-term retention is important.
The other options are standard log-viewing features and cannot satisfy the retention period or flexible access-control requirements, so they are inappropriate.
Audit and Monitor Your Organization’s Security

Log in to save your confidence level.

Q2Salesforce Advanced Administrator

Q2. At Ursa Major Solar, multiple planet-specific teams handle leads based on the planet from which each lead originates.
Most teams require a few fields to be filled in when working a lead, but the Jupiter team alone needs additional information entered, such as which moon the lead came from.
The administrator must automate assigning lead records to the appropriate team based on the planet, while ensuring that every team reliably captures the information it needs.
Select the two features that meet these requirements.

Show answer
Correct answer: A, B
This question requires both automating lead routing and ensuring the completeness of the entered data.
Assignment rules automatically assign leads to specific users or queues based on conditions (for example, the planet), which satisfies the automatic lead-routing requirement.
Validation rules, on the other hand, guarantee data quality by blocking a save when required fields or conditions are not met.
This prevents missing entries for the information each team needs, fulfilling the role of preventing incomplete input.
Matching rules are for duplicate detection, and workflow rules are primarily for automating notifications and updates, so neither is central to this requirement.
When Do Rules Run?

Log in to save your confidence level.

Q3Salesforce Advanced Administrator

Q3. AW Computing organizes its sales territories into three regions: East, Central, and West.
Each region has sales representatives, a sales manager, and sales operations members.
The organization-wide default sharing setting for all objects is Private.
The operations team members in the East region need to be able to access all accounts and opportunities within that region.
How should the administrator configure this requirement?

Show answer
Correct answer: D. Use Territory Management to add the operations team to the East territory.
This question asks how to grant the operations team access to all records in a specific region (East) while the organization-wide sharing setting is Private.
Enterprise Territory Management is a feature that can control access to accounts and opportunities by region or market. It enables bulk access control on a regional basis, making it the best fit for this requirement.
By adding the operations team to the East territory, they can access all accounts and opportunities belonging to that territory, without depending on the record owner or the role hierarchy.
The key point is that sharing can be flexibly achieved even when the org-wide default is Private.
The other options rely on individual sharing or the role hierarchy, so they cannot satisfy the comprehensive regional access requirement.
Manage Users and Roles Within a Territory

Log in to save your confidence level.

Q4Salesforce Advanced Administrator

Q4. Ursa Major Solar has a custom object named Galaxy.
The sales director wants to show users only specific fields.
Which Lightning component satisfies this requirement?

Show answer
Correct answer: B. Field component
This question asks how to control which fields are displayed based on users or conditions.
The Field component in the Lightning App Builder can control visibility (show/hide) based on specific conditions (such as field values or profiles).
Component visibility filters (the Dynamic Forms feature) enable flexible display control.
This allows only the necessary fields to be shown to specific users, optimizing the page and improving usability.
The key point is to leverage Lightning’s Dynamic Forms feature rather than the traditional page layout.
The other options are for simple display (Record Detail) or progress tracking (Path) and do not support conditional visibility.
Use Dynamic Forms on LWC-Enabled Standard Objects

Log in to save your confidence level.

Q5Salesforce Advanced Administrator

Q5. Cloud Kicks (CK) has an internal backup team that supports departments that are short-staffed.
These members might work in Sales one day and in Service the next.
CK is preparing new Lightning record pages for each department so that records can be displayed in a way that is meaningful for each department.
How should the administrator confirm that this is configured correctly?

Show answer
Correct answer: A. Configure an app for each department and activate the record page for each app.
This question asks how to properly display different Lightning record pages for each department.
Lightning record pages can be assigned at the app, profile, or record type level.
By switching record pages at the app level, the same user can be shown a screen suited to the work they are performing.
By creating an app for each department and activating the corresponding record page for each, users can use the optimal screen depending on the app they are working in.
For users whose assignments change, like the backup team, control by app switching is the most suitable.
The other options only manage access rights and are not directly related to switching screen display.
Activate Lightning Experience Record Pages

Log in to save your confidence level.

Q6Salesforce Advanced Administrator

Q6. Cloud Kicks manages inventory information in a legacy application.
Management wants to be able to view and report on this information within Salesforce as well.
To achieve this, which action should the administrator take?

Show answer
Correct answer: A. Create an external object that maps to the inventory application.
This question asks how to view and report on data from a legacy system within Salesforce.
External objects integrate with a data source outside Salesforce and let you treat it as if it were a standard object.
A major advantage is that the data can be referenced in real time without storing it in Salesforce.
This allows the legacy inventory data to be used as-is without migration, and always references the latest data for viewing and reporting. A design that uses Salesforce Connect (external objects) is the optimal solution.
The other options involve copying data or manual management and are inappropriate from the standpoint of real-time access and operational efficiency.
Define External Objects

Log in to save your confidence level.

Q7Salesforce Advanced Administrator

Q7. An administrator created a flow that publishes a platform event every time an opportunity is updated.
An Apex developer is responsible for implementing the code that receives this event.
When reviewing the user’s debug logs, they can see that the flow ran, but no detailed debug information is recorded.
What should the administrator suggest to assist with debugging?

Show answer
Correct answer: C. Set up a debug log on the Automated Process entity.
Platform events run as the “Automated Process” user rather than as the actual user.
For this reason, even when you check a regular user’s debug logs, the details of the event processing are not recorded.
The key point is that platform event execution logs are recorded under the Automated Process user.
Therefore, to debug, you need to set up a debug log for the “Automated Process” entity.
This lets you review the details and error contents of event processing by flows or Apex.
Setting the correct logging target is the key to successful debugging.The other options are either non-existent features or not a fundamental solution.
Add a Trace Flag Entry for the Default Automated Process User

Log in to save your confidence level.

Q8Salesforce Advanced Administrator

Q8. Cloud Kicks uses a Lightning web component to display guidance to sales representatives.
The administrator needs to fix a spelling error in the text displayed in a certain Lightning web component.
What is the recommended tool to make this change?

Show answer
Correct answer: B. Visual Studio Code
Code changes to Lightning web components (LWC) are recommended to be done in a local development environment.
Visual Studio Code is the development tool officially recommended by Salesforce, and it can create, edit, and deploy LWC in conjunction with the Salesforce CLI and extensions.
The key point is that it is the standard development environment where you can directly edit the HTML and JavaScript of an LWC.
To fix a spelling error, you need to edit the HTML file of the relevant component and reflect the change.
The correct procedure is to fix the code in a local IDE rather than a browser-based tool.
The other options are for debugging or org administration and are not suitable for editing LWC code.
Get Started with Lightning Web Components

Log in to save your confidence level.

Q9Salesforce Advanced Administrator

Q9. Select the two tools an administrator should use to enforce field entry and improve the data quality of records in Salesforce.
Choose two answers.

Show answer
Correct answer: A, D
This question asks which features enforce required input and improve data quality.
Validation rules check conditions on save and guarantee data quality by preventing invalid values or blank entries.
The key point is that they can enforce the validity of the entered content.
Page layouts, on the other hand, let you set fields as required, prompting users to enter them.
The point is that required input can be controlled at the UI level.
Dashboards are for visualization and workflow rules are for automated processing, so neither is directly involved in input control.
Validation Rules

Log in to save your confidence level.

Q10Salesforce Advanced Administrator

Q10. A user accidentally created a duplicate opportunity and is unable to delete the duplicate record.
What should the administrator do to troubleshoot this issue?

Show answer
Correct answer: B. Check the user’s profile permissions on the Opportunity object to see whether they have permission to delete.
The key to this question is identifying the reason the user cannot delete the record.
In Salesforce, whether a record can be deleted depends on object permissions, and you specifically need to check whether the Delete permission is granted.
The key point is that without delete permission, a record cannot be deleted.
Therefore, the appropriate first step is to check the delete permission for the Opportunity object in the user’s profile or permission set.
To identify the cause, checking the permission settings is the top priority.
The other options do not resolve the root cause; they amount to workarounds or granting excessive permissions, so they are inappropriate.
Profiles

Log in to save your confidence level.

This exam Back to question list 次のページ Salesforce Certified Advanced Administrator 11-20

最近の投稿

  • Microsoft SC-900 Security, Compliance, and Identity Fundamentals Practice Exam Questions & Answers
  • Microsoft SC-500 Cloud and AI Security Engineer Practice Exam Questions & Answers
  • Microsoft SC-401 Information Security Administrator Practice Exam Questions & Answers
  • Microsoft SC-300 Identity and Access Administrator Practice Exam Questions & Answers
  • Microsoft SC-200 Security Operations Analyst Practice Exam Questions & Answers

最近のコメント

No comments to show.

アーカイブ

  • September 2026
  • August 2026

カテゴリー

  • AWS Certified AI Practitioner
  • AWS Certified Cloud Practitioner
  • AWS Certified CloudOps Engineer – Associate
  • AWS Certified Data Engineer – Associate
  • AWS Certified Developer – Associate
  • AWS Certified DevOps Engineer – Professional
  • AWS Certified Generative AI Developer – Professional
  • AWS Certified Machine Learning Engineer – Associate
  • AWS Certified Security – Specialty
  • AWS Certified Solutions Architect – Associate
  • AWS Certified Solutions Architect – Professional
  • Free
  • Google Associate Cloud Engineer
  • Google Associate Data Practitioner
  • Google Associate Google Workspace Administrator
  • Google Cloud Digital Leader
  • Google Generative AI Leader
  • Google Professional Cloud Architect
  • Google Professional Cloud Database Engineer
  • Google Professional Cloud Developer
  • Google Professional Cloud DevOps Engineer
  • Google Professional Cloud Network Engineer
  • Google Professional Cloud Security Engineer
  • Google Professional Data Engineer
  • Google Professional Machine Learning Engineer
  • Google Professional Security Operations Engineer
  • Microsoft AB-100 Agentic AI Business Solutions Architect
  • Microsoft AB-210 Dynamics 365 Sales AI Consultant
  • Microsoft AB-410 Building Intelligent Applications
  • Microsoft AB-620 Designing and Building Integrated AI Agent Solutions in Copilot Studio
  • Microsoft AB-730 AI Business Professional
  • Microsoft AB-731 AI Transformation Leader
  • Microsoft AB-900 Microsoft 365 Copilot Agent Administration Fundamentals
  • Microsoft AI-102 Azure AI Engineer
  • Microsoft AI-103 Azure AI App and Agent Developer
  • Microsoft AI-200 Azure AI Cloud Developer
  • Microsoft AI-300 Machine Learning MLOps Engineer
  • Microsoft AI-900 Azure AI Fundamentals
  • Microsoft AI-901 Azure AI Fundamentals
  • Microsoft AZ-104 Azure Administrator
  • Microsoft AZ-305 Azure Infrastructure Solutions
  • Microsoft AZ-700 Azure Networking Solutions
  • Microsoft AZ-900 Azure Fundamentals
  • Microsoft DP-203 Data Engineering on Azure
  • Microsoft DP-300 Administering Relational Databases on Azure
  • Microsoft DP-420 Azure Cosmos DB Developer
  • Microsoft DP-600 Fabric Analytics Engineer
  • Microsoft DP-700 Fabric Data Engineer
  • Microsoft DP-750 Azure Databricks Data Engineer
  • Microsoft DP-800 SQL AI Developer
  • Microsoft DP-900 Azure Data Fundamentals
  • Microsoft MB-230 Dynamics 365 Customer Service Functional Consultant
  • Microsoft MB-240 Dynamics 365 Field Service Functional Consultant
  • Microsoft MB-280 Dynamics 365 Customer Experience Analyst
  • Microsoft MB-310 Dynamics 365 Finance Functional Consultant
  • Microsoft MB-330 Dynamics 365 Supply Chain Management Functional Consultant
  • Microsoft MB-500 Dynamics 365 Finance and Operations Apps Developer
  • Microsoft MB-800 Dynamics 365 Business Central Functional Consultant
  • Microsoft MB-820 Dynamics 365 Business Central Developer
  • Microsoft MB-910 Dynamics 365 Fundamentals CRM
  • Microsoft MB-920 Dynamics 365 Fundamentals ERP
  • Microsoft MD-102 Endpoint Administrator
  • Microsoft MS-102 Microsoft 365 Administrator
  • Microsoft MS-700 Teams Administrator
  • Microsoft MS-721 Collaboration Communications Systems Engineer
  • Microsoft PL-200 Power Platform Functional Consultant
  • Microsoft PL-300 Power BI Data Analyst
  • Microsoft PL-400 Power Platform Developer
  • Microsoft PL-500 Power Automate RPA Developer
  • Microsoft PL-600 Power Platform Solution Architect
  • Microsoft PL-900 Power Platform Fundamentals
  • Microsoft SC-100 Cybersecurity Architect
  • Microsoft SC-200 Security Operations Analyst
  • Microsoft SC-300 Identity and Access Administrator
  • Microsoft SC-401 Information Security Administrator
  • Microsoft SC-500 Cloud and AI Security Engineer
  • Microsoft SC-900 Security, Compliance, and Identity Fundamentals
  • Premium
  • Salesforce Certified Administrator
  • Salesforce Certified Advanced Administrator
  • Salesforce Certified Agentforce Specialist
  • Salesforce Certified Associate
  • Salesforce Certified Data 360 Consultant
  • Salesforce Certified Data Architect
  • Salesforce Certified Experience Cloud Consultant
  • Salesforce Certified Field Service Consultant
  • Salesforce Certified Marketing Cloud Account Engagement Consultant
  • Salesforce Certified Marketing Cloud Account Engagement Specialist
  • Salesforce Certified Marketing Cloud Email Specialist
  • Salesforce Certified Marketing Cloud Engagement Administrator
  • Salesforce Certified Marketing Cloud Engagement Consultant
  • Salesforce Certified Marketing Cloud Engagement Developer
  • Salesforce Certified Marketing Cloud Engagement Foundations
  • Salesforce Certified Platform App Builder
  • Salesforce Certified Platform Developer I
  • Salesforce Certified Platform Developer II
  • Salesforce Certified Sales Cloud Consultant
  • Salesforce Certified Sales Foundations
  • Salesforce Certified Service Cloud Consultant
  • Salesforce Certified Sharing and Visibility Architect
  • 未分類
Cloud Study Exams
  • HOME
  • Legal Notice
  • Privacy Policy
  • Terms of Service
Copyright © 2024-2026 Cloud Study Exams All Rights Reserved.