Section 3 - macOS Core Competencies Flashcards

• Complete iOS Setup Assistant. • Navigate the iOS interface. • Locate iOS device information. • Configure settings. • Install and remove apps.

1
Q

What configuration is required during the macOS Setup Assistant to complete activation?

A

Connecting to the Internet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which Apple services can be used with Automated Device Enrollment in order to manage and skip Setup Assistant steps?

A

Apple School Manager & Apple Business Manager

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is contained in the Dock?

A

Apps, Files and Folders and the Trash.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can content be added to the Dock?

A

By dragging an app icon to the Dock.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are some ways Spotlight can be used?

A
  • Search for applications.
  • Search the Internet.
  • Calculations and conversions
  • Definitions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Where can system memory information be found?

A

In the Apple menu > About This Mac > Overview tab.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Where can available hard drive storage be found?

A

In the Apple menu > About This Mac > Storage tab.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are some different ways to open System Preferences?

A
  • Click the System Preferences icon in the dock.
  • Apple menu > System Preferences.
  • Spotlight > System Preferences.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Where would users change their local user account password?

A

System Preferences > Users & Groups > Select their user > Change Password button.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Why add an additional volume to an APFS container? Which application can accomplish this task?

A
  • Volumes can be encrypted to protect sensitive information. Volumes are also more flexible than a partition in that they can grow or shrink as needed.
  • Use Disk Utility to add a volume to an APFS container.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which domain has directories containing apps and preferences shared by all users on a Mac?

A

Local Domain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What prevents users from modifying the System directory?

A

System Integrity Protection

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Where can apps, reviewed and approved by Apple, be obtained?

A

From the Mac App Store

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is required to download an app from the Mac App Store?

A

An Apple ID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are some ways an app can be deleted?

A
  • Open Launchpad, press and hold the Option key then click the app’s delete button.
  • Click and hold an app until it starts to jiggle, then click the app’s delete button.
  • Open Finder > Applications. Click and drag an app to the trash can.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does the .plist file extension stand for?

A

Property List File

17
Q

How do property list files impact the user experience?

A

They can improve it by providing some default settings and information to the application so the user does not have to enter it.

18
Q

Why is it important for IT administrators to make sense of property list files?

A
  • Troubleshooting?

- To control and make the user experience uniform.

19
Q

Where is the Terminal app located in macOS?

A

Applications > Utilities > Terminal

20
Q

What command provides the manual pages for a command?

A

man

21
Q

What would be entered into the Terminal app to open the ‘change directory’ help documentation?

A

man cd

22
Q

What does the / represent in CLI?

A

The root directory.

23
Q

What does the ~ (tilde) represent in CLI?

A

The current user’s home directory.

24
Q

What command is used to move to different directories in the file system?

A

mv

25
Q

What command is used to copy a file into a second location?

A

cp

26
Q

Which keyboard shortcut moves the insertion point to the beginning of a command?

A

Control - A

27
Q

Which key can be used to complete directory and file names?

A

Tab

28
Q

What prefix can be used to execute commands with elevated privileges?

A

sudo

29
Q

Why create a script?

A

To automate a process or extend the functionality of Jamf Pro.

30
Q

What character informs the shell to ignore text in a script?

A

(pound character)

31
Q

How can a script be run within the Terminal app?

A

zsh [filename]