MCQs on Task and Activity Management | Salesforce Sales Cloud

Master Salesforce Sales Cloud with these 30 output-based MCQs. Topics include scheduling events, logging calls/emails, calendar integration, and best practices for tracking sales activities. Boost productivity and CRM proficiency.


Scheduling Events and Setting Reminders

  1. Code:
    const event = new Event({ subject: "Client Meeting", startDateTime: "2023-11-30T10:00:00Z", endDateTime: "2023-11-30T11:00:00Z", isAllDay: false }); console.log(event.isAllDay); What will be the output?
    • A) true
    • B) false
    • C) undefined
    • D) Error
  2. If a user sets a reminder for a task due at “2023-11-30T15:00:00Z” with a 15-minute reminder, what time will the user be notified?
    • A) “2023-11-30T14:45:00Z”
    • B) “2023-11-30T15:15:00Z”
    • C) “2023-11-30T15:00:00Z”
    • D) “2023-11-30T14:00:00Z”
  3. Scenario: A recurring event is set for every Monday. If the first occurrence is on “2023-11-27,” what is the next occurrence?
    • A) “2023-11-28”
    • B) “2023-12-04”
    • C) “2023-12-05”
    • D) “2023-11-29”
  4. When creating an event with no start time, what default value does Salesforce assign?
    • A) “12:00 AM”
    • B) “9:00 AM”
    • C) “8:00 AM”
    • D) “Undefined”
  5. Scenario:
    A task is set to repeat daily with no end date. What happens if the user marks today’s occurrence as completed?
    • A) All future occurrences are deleted
    • B) Only today’s task is marked as completed
    • C) The task series is paused
    • D) Salesforce prompts for confirmation

Logging Calls and Emails to Records

  1. Scenario:
    A sales rep logs a call to a lead’s record with the following details:
    Call Outcome: Left Voicemail
    Call Duration: 3 minutes
    What appears on the lead record’s activity timeline?
    • A) Call Outcome: Left Voicemail
    • B) Call Duration: 3 minutes
    • C) Both A and B
    • D) None
  2. Code:javascriptCopy codeconst callLog = new Call({ subject: "Follow-up", duration: 5 }); console.log(callLog.subject); What will be the output?
    • A) “Follow-up”
    • B) null
    • C) undefined
    • D) Error
  3. Scenario:
    If a sales rep logs an email to a contact’s record with no subject line, what appears as the default subject?
    • A) “No Subject”
    • B) “Logged Email”
    • C) “Follow-up Email”
    • D) None
  4. If a user tries to log a call to a lead record that has been converted, what happens?
    • A) The log is saved to the corresponding contact record
    • B) The user gets an error message
    • C) The log is discarded
    • D) The log is saved to the original lead record
  5. Scenario:
    A sales rep logs a call to an opportunity. What default field values are populated?
    • A) Subject: Call
    • B) Status: Completed
    • C) Both A and B
    • D) None

Calendar Integration with Salesforce

  1. Scenario:
    A sales rep integrates Google Calendar with Salesforce. If an event is created in Salesforce, what appears in Google Calendar?
    • A) Event with full details
    • B) Event with a placeholder title
    • C) No event
    • D) Event syncs with errors
  2. If a user modifies an event in Outlook, what happens to the corresponding Salesforce event?
    • A) The Salesforce event updates automatically
    • B) The Salesforce event remains unchanged
    • C) The Salesforce event is deleted
    • D) A duplicate event is created
  3. Scenario:
    A user disables the sync between Salesforce and their calendar. What happens to the events already synced?
    • A) Events remain unchanged in both systems
    • B) Events are deleted from Salesforce
    • C) Events are deleted from the external calendar
    • D) All synced events are archived
  4. Scenario:
    A recurring event series is edited in Salesforce to exclude one occurrence. What happens to the external calendar?
    • A) The excluded occurrence is removed
    • B) The entire series is deleted
    • C) No changes are synced
    • D) A duplicate series is created
  5. What happens if a Salesforce event is updated to a past date?
    • A) The calendar syncs the update
    • B) The calendar ignores the update
    • C) An error is displayed
    • D) The event is deleted

Best Practices for Tracking Sales Activities

  1. Scenario:
    A task is marked as “High Priority.” How does Salesforce visually represent this?
    • A) With a red flag
    • B) With a star icon
    • C) With bold text
    • D) With no visual indicator
  2. Code:
    const task = new Task({ priority: "Normal" }); console.log(task.priority); What is the output?
    • A) “Normal”
    • B) “High”
    • C) “Low”
    • D) Error
  3. Scenario:
    A sales rep adds a note to a completed task. What happens?
    • A) The task reopens
    • B) The note is added to the task history
    • C) An error occurs
    • D) The note is discarded
  4. What default status does Salesforce assign to a new task?
    • A) “Completed”
    • B) “Not Started”
    • C) “In Progress”
    • D) “Open”
  5. Scenario:
    A user assigns a task to another sales rep. What happens to the original task owner?
    • A) They are notified of the reassignment
    • B) They lose access to the task
    • C) They retain access as a collaborator
    • D) Nothing

Answers

QnoAnswer
1B) false
2A) “2023-11-30T14:45:00Z”
3B) “2023-12-04”
4A) “12:00 AM”
5B) Only today’s task is marked as completed
6C) Both A and B
7A) “Follow-up”
8A) “No Subject”
9A) The log is saved to the corresponding contact record
10C) Both A and B
11A) Event with full details
12A) The Salesforce event updates automatically
13A) Events remain unchanged in both systems
14A) The excluded occurrence is removed
15A) The calendar syncs the update
16A) With a red flag
17A) “Normal”
18B) The note is added to the task history
19D) “Open”
20A) They are notified of the reassignment

Use a Blank Sheet, Note your Answers and Finally tally with our answer at last. Give Yourself Score.

X
error: Content is protected !!
Scroll to Top