Sitecore 10 .NET Developer Certification Exam Flashcards

1
Q

How do you patch in changes to the sitecore section of Web.config?

A

Put a .config patch file in the /App_Config/Include folder.

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

How are component parameters stored in the Sitecore database?

A

As clear text in URL query string format.

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

How can you retrieve the datasource in a view rendering with the default model?

A

Model.Item

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

With a particular rendering an editor can only select items of one particular content type. How can this be achieved?

A

By setting the template ID into the Data Source template field.

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

An author adds a component to a page in the Experience Editor and then selects the Associated Content dialog box. What triggers this behaviour?

A

The component’s Datasource Location field is filled in.

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

What property will automatically prompt a user to choose a datasource when adding a component in the Experience Editor?

A

Datasource Location

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

How can you force a Sitecore control to output the content of an item’s datasource?

A

Set the datasource or item property.

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

How can you restrict authors to specific types of item for a component’s datasource?

A

Add the data template to the component’s Datasource Template field.

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

Why would you set the component on the Standard Values and override the datasource on the items?

A

When your component has to appear on every page but has a different datasource for a particular page.

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

What should you use if you want a Title field to be filled with the name of the item on item creation?

A

Use the $name token on the Standard Values of that template.

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

When you add @Html.Sitecore().Placeholder(“main”) to your rendering, what do you need to do to make the placeholder selectable in the Experience Editor?

A

Create a Placeholder Settings definition item.

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

Why must you create a corresponding Placeholder Settings item in the Sitecore environment after declaring a placeholder in the code of a layout/component?

A

A Placeholder Settings item is necessary for the placeholder to be accessible and used in the Experience Editor.

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

Can you use placeholders inside of placeholders?

A

Not directly, but you can have components inside a placeholder that define other placeholders. They are referred to as nested placeholders.

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

Dynamic placeholders have a unique ID assigned when they appear on a page created from the original placeholder key. Which is the appropriate format for the unique ID?

A

Key-#-{GUID}

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

What happens if allowed controls are not specified on a Placeholder Settings item?

A

In the Experience Editor, the user will be able to add any component to the placeholder.

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

What is the purpose of the Standard Values of a template?

A

To provide a default value when the item is created or to have a fallback when a field has NULL value.

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

Which of the following options is essential for defining default values and for setting default configurations (Insert Options, Presentation Details etc.) on a template?

A

Standard Values

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

Why would you need to use the data source in a component?

A

Data source allows you to build more flexible and reusable components, because the data source is determined by users and not hardcoded by developers.

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

How would you show a toolbar in a random part of the page?

A

Using an Edit Frame.

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

What template must be used as a base template for your Paramaters template?

A

The Standard Rendering Parameters template.

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

You have created a new Parameters template. How do you ensure your component uses it?

A

Through the component’s definition item in the Parameters template field.

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

What is the default model used by view renderings and optionally by controller renderings?

A

RenderingModel

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

Which of the following view types can be used to render HTML output within another view’s rendered output?

A

Partial views

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

What two other terms have the same meaning as component?

A
  • Rendering
  • Control
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
What are the two types of file needed for a model-bound component?
- Model.cs - View.cshtml
26
What would be a good reason for using a custom view component rather than a model-bound view component?
The site needs a component that will integrate with a third-party source for content.
27
You've been asked to ensure users can easily swap out a promotion component with an alternative component option that has no image when used in a smaller space on a page. How would you make the distinction that these two components are interchangeable?
By using compatible renderings in the component definition item.
28
What should you keep in mind when configuring compatible renderings?
They should be set on both components so you can exchange them. Both need to be in the Allowed Controls for any placeholders they will appear in. They may need to share data source and parameters.
29
Which type of component would you create if you wanted to closely follow MVC patterns or invoke complex logic?
Controller rendering
30
How do you bind a controller to deal with the post of a view rendering?
By filling the Form Controller Name and Form Controller Action fields in the definition item of the view rendering.
31
What method do you need to invoke inside a view rendering form to ensure only its controller reacts to the post?
@Html.Sitecore().FormHandler()
32
In a view, what do you need to do so the Field() extension method retrieves the content from the data source?
Nothing, it's its default behaviour.
33
What can be the reason $token is visible in one of the items as "$token" and not replaced with its value?
$token will replace by value for newly created items, not existing ones.
34
Which of the image properties allows you to specify how much space should be placed around the image?
The Space section.
35
Why is there a master and a web database?
It allows content to be edited without affecting the live data/website.
36
Why should you not directly edit in the web database?
Because on the next master publish the content will be overwritten.
37
A single item needs to be published. What two features do you use?
- Content Editor - Experience Editor
38
You have just created new content but you can't see it on your live website. Why not?
You need to publish new/edited content.
39
A new Sitecore developer wants to know the difference between web and master databases. Which of the following best describes the difference?
The master database contains all versions of all the content (including unpublished content), while the web database contains only content that is live on the site.
40
Why is storing media in the Sitecore database an advantage?
It makes publishing easier because the item and the media are both published, so you don't have to keep files in sync.
41
If you set up some publishing restrictions, will Sitecore automatically publish that content at the same time?
No, the publishing restrictions only dictate when an item or its versions are publishable or not.
42
Why should you not add Presentation Details on every new content item?
Use Standard Values of the template so that every item based on this template will have the same layout.
43
The customer wants to temporarily change the layout of a homepage. Which feature of Sitecore should make this possible?
Versioned layouts
44
A new Sitecore developer says they want to start to build out the general structure of the rendered appearence of a webpage. What are they describing?
Layout
45
What is mandatory for Presentation Details?
Layout
46
What do you at least need to create a layout?
- .cshtml file - Layout item
47
Describe the anatomy of a Sitecore layout.
A code file in the file system and a definition item in the content tree.
48
How is the layout file linked to the definition item?
By the Path field on the definition item.
49
What is the difference between Shared and Final layouts?
- Shared: Controls added in the layout are shared in all languages and numbered versions - Final: Changes made in the layout are specific to that language and version
50
What happens when you request a page that has no layout defined in the Presentation Details?
Sitecore shows a "layout not found" error page.
51
Can you edit an item in the Experience Editor when the item has no Presentation Details set?
No, since it can't be presented.
52
How do you address a placeholder?
By using the placeholder key.
53
How do you specify a static component in a .cshtml file?
@Html.Sitecore().Renderings("Path or ID")
54
How do you render the content of a single line text field called Title?
@Html.Sitecore().Field("Title")
55
What is the advantage of using components?
Your presentation artifacts are more reusable.
56
You want to ensure headers and footers are always visible on your Main layout. Will you statically or dynamically bind it?
Statically bind it when you need it to always appear on a layout or rendering.
57
What must you do to ensure a controller rendering can be inserted into a placeholder on your site page?
Add the controller rendering to the placeholder settings of that placeholder.
58
What is the purpose of a dynamic placeholder?
To apply the same placeholder multiple times with different renderings in it.
59
In Sitecore MVC, how do you make a field non-editable?
By setting DisableWebEdit to true.
60
A placeholder is defined in code but not visible in the Experience Editor. What is most likely the cause?
- Placeholder Settings item has to be created - Placeholder should be added to the Presentation Details
61
How to optimize the process for an author to prevent removing renderings if they just want to switch the view of a component?
Add a rendering to compatible renderings.
62
How do you create a component that can't be edited in the Experience Editor?
Use static component binding.
63
What do you need to create when you have a view rendering?
Razor view
64
If you want to have reusable elements in your layout, what kind of view should you create?
Partial view
65
Which .dll relates to presentation? Which dll is required to get RenderingContext?
Sitecore.Mvc.dll
66
How do you access the HTTP request properties?
Sitecore.Context.Request
67
What of these properties are available in the Sitecore.Context class?
- User - Database - Language
68
How would you display the direct children of the Home item?
- Retrieve the Home item using Sitecore.Context.Site.StartPath - Use GetChildren() method
69
What is the danger of using a method like Axes.GetDescendants()?
It retrieves recursively all children of all children of the item. If invoked in an item near the root it would load the entire tree in memory, with the corresponding performance penalty.
70
How do you get the children items of an item?
- .Children - .GetChildren()
71
What is the difference between GetChildren() and GetDescendants()?
- GetChildren: Returns all direct children of an item - GetDescendants: Return all items under an item
72
How can you populate the property of a ViewModel and still support inline editing in the Experience Editor?
By using the Render() method in the FieldRenderer class.
73
How do you put an item into the Editing state?
By creating an Edit Context.
74
What methods do you invoke when you begin and finish editing an item through the API?
- .Editing.BeginEdit() - .Editing.EndEdit()
75
Why would you preferably avoid sorting items in the code (LINQ etc.)?
It might confuse the authors to see items appear in different order to the order shown in the Content Editor.
76
How can you skip certain items when you build the navigation?
Use LINQ to filter by template or value of specific fields.
77
How can you run part of your code with a set of privileges different from those of the context user?
- UserSwitcher - SecurityDisabler
78
What two core services conform to the Sitecore Services Client?
- ItemService - Access to regular Sitecore items - EntityService - Access to business objects
79
What is an item bucket?
A container that allows you to hide innumerable items within, while still being easily retrievable.
80
How do you find items in buckets?
Content Search API
81
Why would an item show in the content tree even though it is a child of a bucketed item?
It's not bucketable.
82
What part of Sitecore is in charge of generating URLs?
LinkManager
83
Where can you customize how URLs are rendered globally?
In the LinkManager section of the Web.config.
84
How can you get Sitecore to produce translated URLs?
By setting the LinkManager to use the item's Display name.
85
Why is it important to have friendly structures within your content tree?
Because they dictate the segments within your URLs.
86
In which situations would you want to change the links generated for an individual link?
If you need to force the language of content that is to be rendered from Sitecore.
87
How can you globally change characters in the URLs that are generated and resolved from Sitecore?
Using the encodeNameReplacements option in the Web.config.
88
How would you disable .aspx being added to all URLs that are generated from Sitecore?
By changing the addAspxExtension attribute of the LinkManager.
89
How would an author cause a broken link when renaming an item?
The URL is usually made using item names. If the page was bookmarked in the browser, it will no longer work. You will need to implement 301 redirect logic.
90
Why should you never cache a component that displays personal information?
Another visitor to your site could see that information.
91
Which of the following commands is used to enable caching for a site?
cachehtml = "true"
92
What kind of information is stored in the Prefetch cache in Sitecore?
Items that Sitecore will need to access during and just after initialization of the instance.
93
Why would your team decide to disable the Prefetch cache in your Sitecore solution?
The cycle of continuous caching and the prefetching of too many items will increase the load on the SQL server and may degrade the startup time of your application.
94
You have a component you would like cached anywhere it is used. Where would you define its cache settings?
On the component definition item in the Sitecore tree.
95
You have a component that you want cached on every Event Details page. Where would you define its cache settings?
On the component on the Event Details template's Standard Values item.
96
How are workflows defined?
Through definition items under /sitecore/settings/workflow.
97
How do you bind a particular workflow with a certain type of item?
By setting the initial workflow in the template's Standard Values.
98
What are some advantages of using workflows?
- Acquire content approval - Prevent unwanted publishing - Automatic numbered versioning - Content testing - Publishing to a preview target
99
What are the two consequences of making a state Final?
- Items in it can be published - Sitecore creates a new version when a non-admin user tries to edit it
100
What can you find in the workbox?
Available commands on items grouped by workflow.
101
What is the point of the Write access right state?
To override the Write Permission for an item while it's in a particular state.
102
What is the purpose of the extranet domain?
To provide access to the website for specific roles and users.
103
A user has been locked out by multiple login attempts using the wrong password. How should you resolve this?
Use the Unlock button in the User Manager.
104
What is the best practice for setting permissions for a user?
Create roles and assign users to them.
105
A user is assigned to a role and suddenly has no access to content that was previously available. What happened?
The new role has explicit access denied for that content, which overrides the granted access of the other roles.
106
Which roles access right will take precedence?
deny
107
What are the two types of accounts?
- Users - Roles
108
Name some Sitecore Security Apps.
- Access Viewer - Security Editor - Role Manager - User Manager
109
Which user is bound to unauthenticated requests to the frontend website?
extranet\Anonymous
110
What role does a user need to be able to log in to the Sitecore backend?
Sitecore Client Users
111
Can you assign a user to a role from a different domain?
Yes
112
Where are access rights stored?
In the Standard field on items.
113
What happens if an access right is unspecified?
Sitecore will inherit the value from the parent item, unless inheritance is disables/denied.
114
What are the effective permissions of a user?
Those defined on the user, plus those defined on any roles it belongs to.
115
What role can you give access rights to so that they apply to all accounts on Sitecore?
Everyone
116
What happens if a role denies an access right and another one allows it?
It's denied.
117
What are the two main security best practices?
- Don't set security on users - Avoid using explicit denies
118
What is the default implementation of a class to use in Search that Sitecore provides?
SearchResultItem
119
Once you retrieve the index you need, what should you do to enable a query to run against that index?
Set up the search context.
120
When should you use a Computed field?
When you need to use field data to calculate a different value to be stored in the index itself.
121
Why do you use an item bucket?
If you have a large amount of content within the content tree and need a scalable solution for authors to work with.
122
How do you use Search facets?
To filter results after an initial search has been run.
123
What is the advantage of setting StorageType to Yes in an index field?
There is no need to access the Sitecore database to query its value.
124
You have used Group by clause to get a result from the index, but you didn't get anything. Why?
Group by clause is not supported by Sitecore Search API.
125
Which parts of IQueryable implementation over Search providers are not supported?
- GroupBy - Aggregate - Sum
126
As a developer, your company has tasked you with creating a blog survey. You've reached the final step where you need to set a submit action for the submit button. Select the submit action that ensures a user is navigated to a thank you page upon clicking submit.
Redirect to a page
127
In what order are language settings applied?
- Querystring - Url - Cookie - Project config file - Sitecore config file
128
Why does Sitecore not allow the use of certain characters in item names?
Items are used to form the URLs. Some characters have special meaning in URLs.
129
As a developer, you're tasked with enabling item-level language fallback on a content page. To support more than one language, which of the following steps is mandatory?
- Specifying language fallback - Enabling site-level fallback
130
Why would you want to have the languageEmbedding option set to never?
The site isn't multilingual.
131
xConnect currently has what two services?
- Collection - Search
132
What happens if you forget to include @Html.Sitecore().VisitorIdentification() inside the of the page?
All visitors will be treated as bots and their information won't be stored in the xDB.
133
How does Sitecore track a device?
Sitecore places a tracking cookie in the browser and stores a reference to it in the xDB.
134
How does Sitecore initially identify a contact?
By using the Identify() method invoked with a suitable identifier.
135
What does Sitecore use to identify a user?
Sitecore.Analytics.Tracker.Current.Identifier(email)
136
How to get data from xDB?
xConnect
137
How does Sitecore know you're a returning customer?
By calling the Identify() method.
138
Describe some xWeb CMS features that separates Sitecore from other systems.
- Analytics - Insights - Decisions - Automation
139
What additional databases are required when running xDB?
- Collection - Reporting - Session State
140
Who should you contact when encountering issues with Sitecore Support?
For communication, timing or access issues, contact your regional sales office.
141
What is the purpose of a Sitecore Support Package?
Sitecore can replicate the issue without access to your environment.
142
What do you need when contacting Sitecore Support?
- Sitecore credentials with write access to the Sitecore Support Portal [M] - License ID for the customer where the issue relates to [M] Note: Partner License ID should only be used for pre-sales and R&D purposes - Case description on how to reproduce the issue [M] - Relevant configuration, log and env related files Note: Errors should be added as plain text files - Sitecore Support Package
143
What should you do before contacting Sitecore Support?
- Examine Sitecore log files for errors/warnings - Compare your configurations with the Sitecore stock configurations or prior deployments - Search for solutions on official and community documentation sources - Run the self-test diagnostics from the Sitecore Diagnostics Toolset - Reproduce the issue on a clean Sitecore environment and create a Sitecore Support Package with the diagnostics information
144
Why is it important to provide Sitecore Support with reproducibles scenarios when submitting a support case via Support Portal?
Sitecore Support needs to be able to reproduce the issue to determine a solution within a clean environment.
145
Why should you utilize Attach to Process in Visual Studio when working with Sitecore?
To ensure you are attaching to your Sitecore site.
146
What is the difference between publishing and deploying?
- Publishing: Copies items from Master to Web databases - Deploying: Copies files from VS project to webroot
147
How can you make your Visual Studio project portable?
By working outside the webroot.
148
What is the role od the CD in a headless setup?
Provides layout and content through API.
149
Which of the following options outlines the benefits of working with a headless Rendering Host for Sitecore development?
You can run the Rendering Host app directly in Visual Studio.
150
Which of the following statements best describes the primary fuction of the Layout Service?
Provides structured data about pages in Sitecore, including their components and fields.
151
Why would you use a JSON rendering item instead of a view rendering item?
View for MVC components and JSON for headless components
152
Why would you use a custom Rendering Contents Resolver with a JSON rendering?
Need access to more complex data from within Sitecore for the component you're creating.
153
How does the Sitecore.LayoutService NuGet package support the development of more advanced components?
Provides access to assemblies and types necessary for extending the Layout Service output.
154
Why would you want to use a contents resolver to display values from Sitecore search indexes?
They allow you to write custom C# code to affect the Layout Service output.
155
Why should the component renderer be registered in Startup.cs in an ASP.NET Core Rendering Host lookup? Why do you register the view?
To provide the SC placeholder with a component to be rendered when combined with the Layout Service output.
156
When would you most likely use the ASP.NET Core Rendering SDK over the other Sitecore rendering tools available?
Customer requires a heavily customized frontend and has some complicated business logic.
157
What type of rendering will you be making when working with Sitecore ASP.NET Core Rendering SDK?
- JSON rendering - Features of ASP.NET Core Rendering SDK (integration with Sitecore XP to support Experience Editor, analytics and personalization)
158
What is the method used to register a model-bound view?
AddModelBoundView
159
Where do you register the view for a component?
In Startup.cs under the ConfigureServices method.
160
Which of the following do you use to register a non-default partial view in Startup.cs?
.AddPartialView()
161
As a developer tasked with building and running cross-platform web, server and console apps, which of the following must you have installed on your workstation to accomplish the task?
- Powershell 5.1 - Docker - .NET Core 3.1 SDK
162
What are the benefits of Sitecore Headless Development?
Introduces efficiencies in developing, maintaining, scaling and upgrading Sitecore solutions.
163
Can I use the ASP.NET Core Rendering SDK without using Sitecore containers?
Sitecore containers ease up the setup of the development environment, but it isn't a requirement for Sitecore Headless Development. You can build Sitecore solutions with ASP.NET Core Rendering SDK in any type of supported infrastructure or hosting model.
164
What features are not supported in Sitecore Headless Development?
- Horizon - Edit frames - Sitecore Forms - Invocation of xConnect events, goals and outcomes from C#
165
What do you use Sitecore Content Serialization for?
To easily move content between different environments.
166
What is the purpose of Module.json?
Set paths of content to be serialized.
167
What if the module is not defined in Sitecore.json?
The content won't be serialized.
168
What is true when speaking of both Sitecore CLI and Sitecore for Visual Studio?
Same functionality, different user interfaces. Users can choose which one to use.
169
Serialization helps to support development experience by?
Allowing developers to easily move and share serialized items across different environments.
170
Why would a developer create an include within a module?
Includes help to specify which sections of the content tree you want to serialize.
171
If a developer created an include that serializes all items starting at "Sample Items", and wanted to specify that this include should serialize all items and all descendants of the item. Which include property would they use to indicate this?
Scope
172
If you create a module with a path that doesn't match one of the paths set in the Sitecore.json file, what will the outcome be?
The module won't be included when you run the serialization.
173
What are the two tools for serialization?
- Sitecore CLI - Sitecore for Visual Studio
174
What file is generated with Sitecore CLI?
dotnet-tools.json
175
What is dotnet-tools.json?
It shows the version as well as the command that you can use to access the functionality of the CLI.
176
What is Sitecore CLI?
It enables devs to communicate with a Sitecore instance from the command line. It allows to log in to a remote instance, publish content and serialize items. It's fast and works extremely well remotely, which supports an optimized developer experience.
177
What are the CLI commands?
- login (authenticate CLI to a SC instance) - plugin (manage plugin commands) - init (create SC configurations in current directory) - index (work with indexes' data) - itemres (Resource Items Package commands) - ser (item serialization commands) - publish (perform publish operation on all content)
178
How should you persist your items in source control?
By serializing them. How they get serialized will depend on the tools at your disposal.
179
What process is used to write database rows of Sitecore to files on disk?
Serialization
180
What is Sitecore for Visual Studio?
Designed to work with new Sitecore Developer command-line tools to provide seamless integration into Visual Studio 19. Its serialization functionality mirrors that of Sitecore CLI. Additionaly it offers the ability to easily create modules, includes, rules and so on by using a GUI.
181
Sitecore CLI and Sitecore for Visual Studio offer...
the same features with different interfaces. The Sitecore Content Serialization tool allows you to choose the option you're most confortable with between CLI and GUI.
182
What problems does Sitecore Content Serialization solve?
Sitecore items are created and updated all the time. These changes must be synchronized across Sitecore instances and between developers working on the Sitecore solution, in the same way they would share code. However, the process of synchronizing item changes is prone to error and time-consuming, because of limited automation facilities. Sitecore Content Serialization addresses this with out-of-the-box item serialization that lets you automate synchronization of item changes.
183
What are the benefits of using Sitecore CLI or Sitecore for Visual Studio?
Sitecore CLI is a command-line interface that interacts with Sitecore instances. This provides increased automation and version control. Sitecore for Visual Studio is a graphical tool that interacts with Sitecore instances from within Visual Studio. It provides the same capabilities as Sitecore CLI but is intended for users who are not familiar with command-line tools.
184
What functionality does TDS offers that is not in Sitecore for Visual Studio?
- File deployment into local Sitecore instance - Web Deployment Package generation - Code generation - Validators - Environment validation
185
When creating custom Sitecore images for your solution, you should?
- Include a Sitecore runtime Dockerfile for each container that makes up your Sitecore topology - Layer-built outputs from your solution and other assets onto the base Sitecore runtime images
186
What are the benefits of using the Docker Tools development ENTRYPOINT and watch script?
- Faster development feedback loops - Overcoming limitations of mounted folders in Windows containers - Clean separation of your solution output from Sitecore-provided files
187
To run the initialization script and install the Getting Started template successfully, you need?
- Path to valid Sitecore license - Desidered admin password
188
Module assets images are...
never directly run, just used as a source for layering into your custom images.
189
Which Docker Compose file has additional containers and specifications for a Docker container deployment of Sitecore with the Getting Started template?
docker-compose.override.yml
190
What type of environment role is not included in an XP0 Docker container deployment of Sitecore?
CD
191
How do you deploy code into the CM instance when using the Getting Started template?
Publish the Platform project from Visual Studio.
192
What is the view window associated with Sitecore for Visual Studio?
Sitecore module explorer
193
What is the Docker command for pulling the logs for the rendering container?
docker-compose logs -f rendering
194
How to debug the CD that's running a Docker container?
Attach to w3wp process.
195
What is the Sitecore container registry?
Docker images available for dev and prod purposes are available here.
196
When should you use HOST_LICENSE_FOLDER instead of SITECORE_LICENSE?
If the license compression fails and is giving errors, you can mount the license through volumes and the host license folder .env variable.
197
What are the requirements for running Sitecore with containers?
- Windows 10 v1809 or greater - Docker Desktop for Windows
198
Where can you find the walkthrough for downloading, installing and using the Getting Started template?
Sitecore documentation
199
What does a Docker ENTRYPOINT provide?
The command to execute when the container is first run.
200
Which of the following is not a necessary workstation prerequisite for using the Getting Started template?
Command Prompt v10
201
Which of the following are necessary workstation prerequisites for using the Getting Started template?
- PowerShell v5.1 - Docker for Windows - .NET Core 3.1 SDK
202
What arguments are absolute requirements to provide to the int.ps1 script upon execution before running the Getting Started up.ps1 script for the first time?
InitEnv -LicenseXmlPath "C:\license.xml" - AdminPassword "password"
203
What is the purpose of the clean.ps1 script in the Docker folder of the MyProject files?
To clean the environment of all persistent data.
204
Which Visual Studio window allows you to attach to process in a running container?
Containers
205
The Getting Started template deploys what type of Sitecore architecture?
Sitecore Experience Platform XP0
206
You are in the process of converting your Sitecore license file by compressing and encoding it using the script Sitecore provided. As you proceed to run the code, you receive an error that the license file is incompatible. What steps can you take to resolve this error?
Mount the license file as a Docker volume and populate the SITECORE_LINCENSE_LOCATION environment variable on each service.
207
Running Sitecore with containers also requires specific hw capabilities. If you are running a full XP Server instance, what amount of RAM do you need to run it successfully?
32GB
208
What are the identified Sitecore supported topologies for Docker?
- XP Workstation - XP Server - XM Server
209
What are the software prerequisites for Docker?
- Windows 10 Pro or Enterprise v1809 (2019 LTSC) or later - Hyper-V - Docker Desktop for Windows - Docker Compose - Visual Studio or Visual Studio Code
210
When to use the XP Workstation topology?
To reduce memory overhead, download size or complexity, and to improve startup/shutdown time. Designed to be used as a Developer Workstation for Docker.
211
When to use the XM Server topology?
To reduce deployment time and lower the resource overhead in non-production environments. Designed for use in production and non-production environments.
212
When working with multisite implementation, what's the recommended practice for creating each site's tree structure?
1. Create a specific Site Definition configuration. 2. Create a folder for each site under the Content item. 3. Create a Home item for each site within the folder.
213
What are the reasons to assigning security rights to roles instead of individual users?
- Roles enable you to control security access for group of users and roles simultaneously. - Assigning permissions to individual users can be confusing and create risk.
214
When is template inheritance not recommended for fields with the same name?
When the fields require different field sources.
215
What is the default scope for a serialization include if the scope is not defined?
ItemAndDescendants
216
Sitecore recommends defining an item's Presentation Details as part of the Standard Values child item of a data template. Why is it important to define Presentation Details in the Standard Values item?
Items created from templates inherit the Standard Values (including Presentation Details) and NULL fields default to the template's Standard Values.
217
The component you just completed is statically bound to a page. What is one implication of static binding components like this?
Authors can't select the component in the Experience Editor in Designing mode.
218
What is the purpose of a .env file when deploying Sitecore to containers?
The .env file allows you to declare environment variables for your Docker containers.
219
What is the purpose of the Sitecore Core database?
To store settings and content for the Sitecore application itself.
220
With what are you syncronizing the Master database when using Sitecore's Publish command?
One or more identified publishing targets.
221
You have been assigned the development task of setting the Insert Options for items in the content tree. According to Sitecore's best practices, where should you establish Insert Options for items?
In the Standard Values of an item template.
222
Which statement describes the difference between layouts and components?
The layout provides the base structure for a given delivery channel (it's a scaffolding of the page), while components are smaller structure items added to the Presentation Details.
223
What is the primary function of the Layout Service?
To provide structured data about Sitecore-based pages, including components and their associated content.
224
When using Sitecore Content Serialization, what is the Sitecore.json file in your development solution?
The configuration file for global development plugins and module locations.
225
What will happen if you don't add the hostnames of your Sitecore environment to your Windows hosts file?
You will not be able to access the Sitecore environment via IP address in a browser.
226
Name the five official Sitecore Documentation Resources and their purpose.
- Sitecore Developer Network: Download PDF documentation for Sitecore 7.5 and earlier (shut down in 2019) - Sitecore Documentation: New documentation site (doc.sitecore.com) - Sitecore Developer Portal: Enhance developer experience (developers.sitecore.com) - Sitecore Knowledge Base: Knowledge Base and support, patches etc. (support.sitecore.com) - Sitecore Training and Certification (learning.sitecore.com) - YT Channel Discover Sitecore (youtube.com/DiscoverSitecore) - Twitter (twitter.com/WeAreSitecore)
227
What is the name of the feature that makes Web Content Management possible in Sitecore?
Experience Management (xManagement)
228
What do you need to take full advantage of the Sitecore Experience Platform?
- Experience Management (xManagement) - Experience Database
229
What is the primary location for all the digital assets in your solution?
Media Library
230
What is the name of the component architecture guideline of Sitecore?
Helix
231
Which of these editors can be used to modify an image in Sitecore?
- Content Editor - Image Editor - Experience Editor
232
What are the Developer-focused features added in Sitecore 10?
- Sitecore with containers - Sitecore Content Serialization - Sitecore ASP.NET Core Rendering SDK
233
What are the different options for Sitecore serialization introduced in Sitecore 10?
- Sitecore Content Serialization by CLI - Sitecore Content Serialization using Visual Studio Plug In
234
What are the benefits of Developer-focused features added in Sitecore 10?
- Increased developer productivity (development is faster) - Lower cost of ownership - Faster onboarding for new developers
235
List the benefits of participating in the Sitecore Community.
- Complete sample modules for your use can be found on the Sitecore marketplace - 24/7 help from community members, including Sitecore - While actively contributing to the Sitecore Community you can become a Sitecore MVP, which gives related benefits
236
Are all items pages in a Sitecore Project?
No, items that are pages have their Presentation Details set.
237
Why does Sitecore recommend using a static HTML page as friendly response for a 500 error?
To protect your site from getting stuck in a loop if a major server issue occurs. Note: If Sitecore provides the error page and the error comes from Sitecore there might be a loop that could take the site down.
238
Which application from the Sitecore Launchpad is used to implement additional languages in Sitecore?
Control Panel
239
How does Sitecore supports each of the CMS pillars (Data definition, Content and Presentation)?
- Data definition: Templates - Content: Items - Presentation: Layouts and components
240
What three pieces of information do you require to create an item?
- Name - Template - Location (parent item)
241
How do you define data structures within Sitecore?
By using templates.
242
What is the purpose of template sections?
To group related fields together.
243
What does template inheritance ensure?
- Reusability - Mantainability
244
All templates by default inherit from...
the Standard template.
245
Two items based on the same template will have...
the same fields.
246
You have Title field in Event template and Title field in Article template. What will you do to follow the recommended approach?
Create a base template and inherit on both.
247
When you have two templates with a description field which is implemented with a rich text editor, but both fields use a different implementation of the rich text editor, can you move the field to a shared base template?
No, because the source value is different and applies different functionalities to the Rich Text editor.
248
To provide a rich user experience, what are some recommended practices you should use when you create templates?
- Provide default values - Use user friendly names and icons - Limit the use of Rich Text editors
249
You've been hired to create a site for a company, and you must define the data structures in Sitecore to create items and content. What should you use to define data structures?
Templates
250
Template B inherits from template A and template C inherits from template B. Which type of inheritance best explains the relationship between template A and C?
Indirect inheritance
251
Only one parameters template can be assigned to a Component Definition item. What could you do if there are parameters in two or more templates that need to be assigned to a single Component Definition item?
Create a new template that inherits from the existing templates that have the required fields.
252
What item setting needs to be specified for authors to be able to add content?
Insert Options
253
What happens if you don't set any Insert Options?
Only admins and privileged users will be able to create content.
254
Where should you set Insert Options as a best practice?
Standard Values
255
What is the function of the Data Source field of a template?
Designates where data comes from in the content tree. Note: This doesn't apply to Rich Text Editor fields.
256
Why should you use a Multilist over a Droplist?
To provide the option for an author to select multiple data.
257
How can you ensure that a field in a view model is still editable?
FieldRenderer.Render(Item, FieldName)
258
@Html.Sitecore().Field() can't be used for which field?
Complex fields (including Checkbox)
259
Which of the following field types allows a Content Author to enter and store an HTML fragment?
Rich Text
260
Which three field types listed below, when used with .Field HTML helper, can be rendered inline editable in the Experience Editor?
- Single-line text - Image - Datetime
261
How do you display the contents of a field in code?
@Html.Sitecore.Field("FieldName")
262
What can you use to translate fields and Help texts in the Sitecore Client?
Sitecore Dictionary entries
263
What happens if you use FieldRenderer.Render() method to render a Multilist field?
It would render the raw value of the field (pipe-delimited GUIDs).
264
How would you render a Multilist field?
By retrieving its value in code and using it to create some output.
265
What class would you use to retrieve the contents of a Treelist field?
Sitecore.Data.Fields.MultilistField
266
What is the name of the popup window in the Experience Editor that can be used to edit fields that are not editable inline?
Field Editor
267
How would you enable the use of a Field Editor?
By adding a Field Editor button to a toolbar.
268
When you use the field helper, what do you do to ensure that a field can't be editable inline?
Use the DisableWebEdit option.
269
How can you edit Treelist in Experience Editor?
Use Edit frame and Add buttons in toolbar.
270
Give an example of when you would use the DisableWebEdit parameter when rendering a field.
Rendering a field inside the tag in the <head> of the HTML. </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":271,"qSoundUrl":null,"resources":{"deckId":14844489,"packId":21804923,"cardId":477359416},"returnTo":"/packs/21804923/subscribe"}' id='card-477359416'> <div class='header'> 271 </div> <div class='card-face question'> <div class='question-content'> What happens if you use the same field name in a template that is already used in a parent template? </div> </div> <div class='card-face answer'> <div class='answer-content'> You will get two fields with the same name, which leads to confusion and becomes harder to manage later. </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":272,"qSoundUrl":null,"resources":{"deckId":14844489,"packId":21804923,"cardId":477359446},"returnTo":"/packs/21804923/subscribe"}' id='card-477359446'> <div class='header'> 272 </div> <div class='card-face question'> <div class='question-content'> Why are you unable to render a Multilist field to the page using .Render()? </div> </div> <div class='card-face answer'> <div class='answer-content'> It contains IDs and not readable content. </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":273,"qSoundUrl":null,"resources":{"deckId":14844489,"packId":21804923,"cardId":477359462},"returnTo":"/packs/21804923/subscribe"}' id='card-477359462'> <div class='header'> 273 </div> <div class='card-face question'> <div class='question-content'> What would you use the Field Source for? - Image - Rich Text - Droplink </div> </div> <div class='card-face answer'> <div class='answer-content'> - Image: Set the folder in the media library. It will open when selecting an image - Rich Text: Configuration of the toolbar and functionality of Rich Text Editor - Droplink: Set the items to be displayed as options </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":274,"qSoundUrl":null,"resources":{"deckId":14844489,"packId":21804923,"cardId":477359522},"returnTo":"/packs/21804923/subscribe"}' id='card-477359522'> <div class='header'> 274 </div> <div class='card-face question'> <div class='question-content'> What happens when you set the field to shared or unversioned? </div> </div> <div class='card-face answer'> <div class='answer-content'> - Shared: There is a single version of data for all versions in all languages - Unversioned: There is one value of data per language </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":275,"qSoundUrl":null,"resources":{"deckId":14844489,"packId":21804923,"cardId":477359573},"returnTo":"/packs/21804923/subscribe"}' id='card-477359573'> <div class='header'> 275 </div> <div class='card-face question'> <div class='question-content'> What is the best common practice/location for content in the content tree that you want to reuse for multiple sites? </div> </div> <div class='card-face answer'> <div class='answer-content'> Place the shared content in a folder outside the structure of both sites in the content tree. </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":276,"qSoundUrl":null,"resources":{"deckId":14844489,"packId":21804923,"cardId":477359595},"returnTo":"/packs/21804923/subscribe"}' id='card-477359595'> <div class='header'> 276 </div> <div class='card-face question'> <div class='question-content'> What are the different Sitecore Server roles? </div> </div> <div class='card-face answer'> <div class='answer-content'> - CD: Makes your web content available to your website contacts - CM: Enables content editors to create and publish content to a website - Processing: Extracts information from captured, raw analytics data and transforms it into a form suitable for use in reporting applications - Reporting: Fetches reporting data from various data sources (collection and reporting databases) to use in Sitecore reporting applications (Experience Analytics) - Standalone: A single Sitecore instance performing all server roles (Default Role) </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":277,"qSoundUrl":null,"resources":{"deckId":14844489,"packId":21804923,"cardId":477359654},"returnTo":"/packs/21804923/subscribe"}' id='card-477359654'> <div class='header'> 277 </div> <div class='card-face question'> <div class='question-content'> Name some of the attributes that can be configured in the site node for a website. </div> </div> <div class='card-face answer'> <div class='answer-content'> - Name (name of the site) - Host Name (host name of the incoming URL) - Mode (enable/disable site) - RootPath (path to root item of the site) - StartItem (path to start item of the site) - Language (default content language for the site) - Database (default context database for the site) - RequireLogin (if true, login will be required to enter the site) - Domain (security domain of the site) - enableAnalytics (indicates if analytics is enabled on the site) - enableWebEdit (enable/disable Experience Editor) </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":278,"qSoundUrl":null,"resources":{"deckId":14844489,"packId":21804923,"cardId":477359689},"returnTo":"/packs/21804923/subscribe"}' id='card-477359689'> <div class='header'> 278 </div> <div class='card-face question'> <div class='question-content'> Which tag is used in Layers.config file to define the sequence of execution of configuration files? </div> </div> <div class='card-face answer'> <div class='answer-content'> <loadOrder> Note: New, before configuration files were executed in alphabetical order. </div> </div> </div> </div> </div> </div> <div class='flashcards-sidebar'> <div class='sidebar-header'> <div class='react-component' id='flashcards-search-bar'> <div class='placeholder market-search-bar' id='flashcards-search-bar-placeholder'></div> </div> </div> <div class='sidebar-content'> <p class='deck-subject-heading'> <a class="decks-in-subject-link" href="/packs/sitecore-21804923"><span class="pack-name">Sitecore</span> (1 decks) </a></p> <ul class='deck-list-items'> <a class='deck-link selected' href='/flashcards/sitecore-10-net-developer-certification-14844489/packs/21804923'> <li class='deck-list-item'>Sitecore 10 .NET Developer Certification Exam</li> </a> </ul> </div> </div> </div> <div id='tooltip-controller'></div> <div data='{"packId":21804923,"source":"spaced-repetition-modal","subject":"Sitecore","resources":{"deckId":14844489,"packId":21804923},"returnTo":"/packs/21804923/subscribe"}' id='spaced-repetition-modal-controller'></div> <div id='banner-controller'></div> <div id='dialog-modal-controller'></div> <div class='band band-footer'> <div class='footer-main'> <ul class='sections'> <li class='section key-links'> <p class='section-heading'> Key Links </p> <ul class='options-list'> <li class='option'> <a id="footer-pricing-link" class="option-link" href="/pricing?paywall=upgrade">Pricing</a> </li> <li class='option'> <a class="option-link" href="/companies">Corporate Training</a> </li> <li class='option'> <a class="option-link" href="/teachers">Teachers & Schools</a> </li> <li class='option'> <a class="option-link" target="_blank" rel="nofollow noopener noreferrer" href="https://itunes.apple.com/us/app/brainscape-smart-flashcards/id442415567?mt=8">iOS App</a> </li> <li class='option'> <a class="option-link" target="_blank" rel="nofollow noopener noreferrer" href="https://play.google.com/store/apps/details?id=com.brainscape.mobile.portal">Android App</a> </li> <li class='option'> <a class="option-link" target="_blank" rel="noopener" href="https://www.brainscape.com/faq">Help Center</a> </li> </ul> </li> <li class='section subjects'> <p class='section-heading'> Subjects </p> <ul class='options-list'> <li class='option'> <a class="option-link" href="/subjects/medical-nursing">Medical & Nursing</a> </li> <li class='option'> <a class="option-link" href="/subjects/law">Law Education</a> </li> <li class='option'> <a class="option-link" href="/subjects/foreign-languages">Foreign Languages</a> </li> <li class='option'> <a class="option-link" href="/subjects-directory/a">All Subjects A-Z</a> </li> <li class='option certified-classes'> <a class="option-link" href="/learn">All Certified Classes</a> </li> </ul> </li> <li class='section company'> <p class='section-heading'> Company </p> <ul class='options-list'> <li class='option'> <a class="option-link" href="/about">About Us</a> </li> <li class='option'> <a target="_blank" class="option-link" rel="nofollow noopener noreferrer" href="https://brainscape.zendesk.com/hc/en-us/articles/115002370011-Can-I-earn-money-from-my-flashcards-">Earn Money!</a> </li> <li class='option'> <a target="_blank" class="option-link" href="https://www.brainscape.com/academy">Academy</a> </li> <li class='option'> <a target="_blank" class="option-link" href="https://brainscapeshop.myspreadshop.com/all">Swag Shop</a> </li> <li class='option'> <a target="_blank" rel="nofollow noopener" class="option-link" href="/contact">Contact</a> </li> <li class='option'> <a target="_blank" rel="nofollow noopener" class="option-link" href="/terms">Terms</a> </li> <li class='option'> <a target="_blank" class="option-link" href="https://www.brainscape.com/academy/brainscape-podcasts/">Podcasts</a> </li> <li class='option'> <a target="_blank" class="option-link" href="/careers">Careers</a> </li> </ul> </li> <li class='section find-us'> <p class='section-heading'> Find Us </p> <ul class='social-media-list'> <li class='option twitter-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://twitter.com/Brainscape"><img data-src="/pks/images/shared/twitterx-af917e8b474ed7c95a19.svg" alt="twitter badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option linkedin-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.linkedin.com/company/brainscape/"><img data-src="/pks/images/shared/linkedin-2f15819658f768056cef.svg" alt="linkedin badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option facebook-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.facebook.com/Brainscape"><img data-src="/pks/images/shared/facebook-1598a44227eabc411188.svg" alt="facebook badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option youtube-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.youtube.com/c/BrainscapeNY"><img data-src="/pks/images/shared/youtube-7f2994b2dc1891582524.svg" alt="youtube badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option pinterest-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.pinterest.com/brainscape/"><img data-src="/pks/images/shared/pinterest-04f51aa292161075437b.svg" alt="pinterest badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option tiktok-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.tiktok.com/@brainscapeu"><img data-src="/pks/images/shared/tiktok-644cf4608bd73fbbb24f.svg" alt="tiktok badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option insta-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.instagram.com/brainscape/"><img data-src="/pks/images/shared/insta-210cc2d059ae807961d2.svg" alt="insta badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> </ul> <div class='get-the-app'> <div class='qr-code'> <img data-src="https://www.brainscape.com/assets/cms/public-views/shared/shortio-from-homepage.png" alt="QR code" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="130" height="130" /> </div> <div class='app-badges'> <div class='badge apple-badge'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://apps.apple.com/us/app/brainscape-smart-flashcards/id442415567"><img data-src="/pks/images/shared/apple-badge-b6e4f380fb879821d601.svg" alt="apple badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="124" height="50" /></a> </div> <div class='badge android-badge'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://play.google.com/store/apps/details?id=com.brainscape.mobile.portal&utm_source=global_co&utm_medium=prtnr&utm_content=Mar2515&utm_campaign=PartBadge&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1"><img data-src="/pks/images/shared/android-badge-a2251833dc7f6ca8879c.svg" alt="android badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="124" height="50" /></a> </div> </div> </div> </li> </ul> </div> <div class='footer-blurb'> Brainscape helps you reach your goals faster, through stronger study habits. <br> © 2025 Bold Learning Solutions. <a class="option-link" href="/terms">Terms and Conditions</a> </div> </div> <script> if (typeof window.__REACT_DEVTOOLS_GLOBAL_HOOK__ === 'object') { __REACT_DEVTOOLS_GLOBAL_HOOK__.inject = function() {}; } </script> <script> window.addEventListener('load', () => { setTimeout(() => { const script = document.createElement('script'); script.src = "/pks/js/public-flashcards-page-9140413b5150ce9700f9.js"; script.defer = true; document.body.appendChild(script); }, 0); }); </script> <script src="https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js" defer="defer"></script> <script> document.addEventListener("mainSharedready", () => { GaHelper.setGaDimension("dimension1","No"); }); </script> <script type='application/ld+json'> {"@context":"https://schema.org/","@type":"Quiz","about":{"@type":"Thing","name":"Sitecore 10 .NET Developer Certification Exam"},"hasPart":[{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you patch in changes to the sitecore section of Web.config?","acceptedAnswer":{"@type":"Answer","text":"Put a .config patch file in the /App_Config/Include folder."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How are component parameters stored in the Sitecore database?","acceptedAnswer":{"@type":"Answer","text":"As clear text in URL query string format."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How can you retrieve the datasource in a view rendering with the default model?","acceptedAnswer":{"@type":"Answer","text":"Model.Item"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"With a particular rendering an editor can only select items of one particular content type. How can this be achieved?","acceptedAnswer":{"@type":"Answer","text":"By setting the template ID into the Data Source template field."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"An author adds a component to a page in the Experience Editor and then selects the Associated Content dialog box. What triggers this behaviour?","acceptedAnswer":{"@type":"Answer","text":"The component's Datasource Location field is filled in."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What property will automatically prompt a user to choose a datasource when adding a component in the Experience Editor?","acceptedAnswer":{"@type":"Answer","text":"Datasource Location"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How can you force a Sitecore control to output the content of an item's datasource?","acceptedAnswer":{"@type":"Answer","text":"Set the datasource or item property."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How can you restrict authors to specific types of item for a component's datasource?","acceptedAnswer":{"@type":"Answer","text":"Add the data template to the component's Datasource Template field."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why would you set the component on the Standard Values and override the datasource on the items?","acceptedAnswer":{"@type":"Answer","text":"When your component has to appear on every page but has a different datasource for a particular page."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What should you use if you want a Title field to be filled with the name of the item on item creation?","acceptedAnswer":{"@type":"Answer","text":"Use the $name token on the Standard Values of that template."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"When you add @Html.Sitecore().Placeholder(main) to your rendering, what do you need to do to make the placeholder selectable in the Experience Editor?","acceptedAnswer":{"@type":"Answer","text":"Create a Placeholder Settings definition item."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why must you create a corresponding Placeholder Settings item in the Sitecore environment after declaring a placeholder in the code of a layout/component?","acceptedAnswer":{"@type":"Answer","text":"A Placeholder Settings item is necessary for the placeholder to be accessible and used in the Experience Editor."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Can you use placeholders inside of placeholders?","acceptedAnswer":{"@type":"Answer","text":"Not directly, but you can have components inside a placeholder that define other placeholders. They are referred to as nested placeholders."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Dynamic placeholders have a unique ID assigned when they appear on a page created from the original placeholder key. Which is the appropriate format for the unique ID?","acceptedAnswer":{"@type":"Answer","text":"Key-#-{GUID}"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What happens if allowed controls are not specified on a Placeholder Settings item?","acceptedAnswer":{"@type":"Answer","text":"In the Experience Editor, the user will be able to add any component to the placeholder."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the purpose of the Standard Values of a template?","acceptedAnswer":{"@type":"Answer","text":"To provide a default value when the item is created or to have a fallback when a field has NULL value."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which of the following options is essential for defining default values and for setting default configurations (Insert Options, Presentation Details etc.) on a template?","acceptedAnswer":{"@type":"Answer","text":"Standard Values"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why would you need to use the data source in a component?","acceptedAnswer":{"@type":"Answer","text":"Data source allows you to build more flexible and reusable components, because the data source is determined by users and not hardcoded by developers."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How would you show a toolbar in a random part of the page?","acceptedAnswer":{"@type":"Answer","text":"Using an Edit Frame."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What template must be used as a base template for your Paramaters template?","acceptedAnswer":{"@type":"Answer","text":"The Standard Rendering Parameters template."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"You have created a new Parameters template. How do you ensure your component uses it?","acceptedAnswer":{"@type":"Answer","text":"Through the component's definition item in the Parameters template field."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the default model used by view renderings and optionally by controller renderings?","acceptedAnswer":{"@type":"Answer","text":"RenderingModel"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which of the following view types can be used to render HTML output within another view's rendered output?","acceptedAnswer":{"@type":"Answer","text":"Partial views"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What two other terms have the same meaning as component?","acceptedAnswer":{"@type":"Answer","text":"- Rendering - Control"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What are the two types of file needed for a model-bound component?","acceptedAnswer":{"@type":"Answer","text":"- Model.cs - View.cshtml"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What would be a good reason for using a custom view component rather than a model-bound view component?","acceptedAnswer":{"@type":"Answer","text":"The site needs a component that will integrate with a third-party source for content."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"You've been asked to ensure users can easily swap out a promotion component with an alternative component option that has no image when used in a smaller space on a page. How would you make the distinction that these two components are interchangeable?","acceptedAnswer":{"@type":"Answer","text":"By using compatible renderings in the component definition item."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What should you keep in mind when configuring compatible renderings?","acceptedAnswer":{"@type":"Answer","text":"They should be set on both components so you can exchange them. Both need to be in the Allowed Controls for any placeholders they will appear in. They may need to share data source and parameters."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which type of component would you create if you wanted to closely follow MVC patterns or invoke complex logic?","acceptedAnswer":{"@type":"Answer","text":"Controller rendering"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you bind a controller to deal with the post of a view rendering?","acceptedAnswer":{"@type":"Answer","text":"By filling the Form Controller Name and Form Controller Action fields in the definition item of the view rendering."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What method do you need to invoke inside a view rendering form to ensure only its controller reacts to the post?","acceptedAnswer":{"@type":"Answer","text":"@Html.Sitecore().FormHandler()"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"In a view, what do you need to do so the Field() extension method retrieves the content from the data source?","acceptedAnswer":{"@type":"Answer","text":"Nothing, it's its default behaviour."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What can be the reason $token is visible in one of the items as \"$token\" and not replaced with its value?","acceptedAnswer":{"@type":"Answer","text":"$token will replace by value for newly created items, not existing ones."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which of the image properties allows you to specify how much space should be placed around the image?","acceptedAnswer":{"@type":"Answer","text":"The Space section."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why is there a master and a web database?","acceptedAnswer":{"@type":"Answer","text":"It allows content to be edited without affecting the live data/website."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why should you not directly edit in the web database?","acceptedAnswer":{"@type":"Answer","text":"Because on the next master publish the content will be overwritten."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"A single item needs to be published. What two features do you use?","acceptedAnswer":{"@type":"Answer","text":"- Content Editor - Experience Editor"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"You have just created new content but you can't see it on your live website. Why not?","acceptedAnswer":{"@type":"Answer","text":"You need to publish new/edited content."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"A new Sitecore developer wants to know the difference between web and master databases. Which of the following best describes the difference?","acceptedAnswer":{"@type":"Answer","text":"The master database contains all versions of all the content (including unpublished content), while the web database contains only content that is live on the site."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why is storing media in the Sitecore database an advantage?","acceptedAnswer":{"@type":"Answer","text":"It makes publishing easier because the item and the media are both published, so you don't have to keep files in sync."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"If you set up some publishing restrictions, will Sitecore automatically publish that content at the same time?","acceptedAnswer":{"@type":"Answer","text":"No, the publishing restrictions only dictate when an item or its versions are publishable or not."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why should you not add Presentation Details on every new content item?","acceptedAnswer":{"@type":"Answer","text":"Use Standard Values of the template so that every item based on this template will have the same layout."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"The customer wants to temporarily change the layout of a homepage. Which feature of Sitecore should make this possible?","acceptedAnswer":{"@type":"Answer","text":"Versioned layouts"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"A new Sitecore developer says they want to start to build out the general structure of the rendered appearence of a webpage. What are they describing?","acceptedAnswer":{"@type":"Answer","text":"Layout"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is mandatory for Presentation Details?","acceptedAnswer":{"@type":"Answer","text":"Layout"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What do you at least need to create a layout?","acceptedAnswer":{"@type":"Answer","text":"- .cshtml file - Layout item"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Describe the anatomy of a Sitecore layout.","acceptedAnswer":{"@type":"Answer","text":"A code file in the file system and a definition item in the content tree."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How is the layout file linked to the definition item?","acceptedAnswer":{"@type":"Answer","text":"By the Path field on the definition item."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the difference between Shared and Final layouts?","acceptedAnswer":{"@type":"Answer","text":"- Shared: Controls added in the layout are shared in all languages and numbered versions - Final: Changes made in the layout are specific to that language and version"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What happens when you request a page that has no layout defined in the Presentation Details?","acceptedAnswer":{"@type":"Answer","text":"Sitecore shows a \"layout not found\" error page."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Can you edit an item in the Experience Editor when the item has no Presentation Details set?","acceptedAnswer":{"@type":"Answer","text":"No, since it can't be presented."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you address a placeholder?","acceptedAnswer":{"@type":"Answer","text":"By using the placeholder key."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you specify a static component in a .cshtml file?","acceptedAnswer":{"@type":"Answer","text":"@Html.Sitecore().Renderings(Path or ID)"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you render the content of a single line text field called Title?","acceptedAnswer":{"@type":"Answer","text":"@Html.Sitecore().Field(Title)"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the advantage of using components?","acceptedAnswer":{"@type":"Answer","text":"Your presentation artifacts are more reusable."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"You want to ensure headers and footers are always visible on your Main layout. Will you statically or dynamically bind it?","acceptedAnswer":{"@type":"Answer","text":"Statically bind it when you need it to always appear on a layout or rendering."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What must you do to ensure a controller rendering can be inserted into a placeholder on your site page?","acceptedAnswer":{"@type":"Answer","text":"Add the controller rendering to the placeholder settings of that placeholder."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the purpose of a dynamic placeholder?","acceptedAnswer":{"@type":"Answer","text":"To apply the same placeholder multiple times with different renderings in it."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"In Sitecore MVC, how do you make a field non-editable?","acceptedAnswer":{"@type":"Answer","text":"By setting DisableWebEdit to true."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"A placeholder is defined in code but not visible in the Experience Editor. What is most likely the cause?","acceptedAnswer":{"@type":"Answer","text":"- Placeholder Settings item has to be created - Placeholder should be added to the Presentation Details"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How to optimize the process for an author to prevent removing renderings if they just want to switch the view of a component?","acceptedAnswer":{"@type":"Answer","text":"Add a rendering to compatible renderings."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you create a component that can't be edited in the Experience Editor?","acceptedAnswer":{"@type":"Answer","text":"Use static component binding."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What do you need to create when you have a view rendering?","acceptedAnswer":{"@type":"Answer","text":"Razor view"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"If you want to have reusable elements in your layout, what kind of view should you create?","acceptedAnswer":{"@type":"Answer","text":"Partial view"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which .dll relates to presentation? Which dll is required to get RenderingContext?","acceptedAnswer":{"@type":"Answer","text":"Sitecore.Mvc.dll"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you access the HTTP request properties?","acceptedAnswer":{"@type":"Answer","text":"Sitecore.Context.Request"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What of these properties are available in the Sitecore.Context class?","acceptedAnswer":{"@type":"Answer","text":"- User - Database - Language"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How would you display the direct children of the Home item?","acceptedAnswer":{"@type":"Answer","text":"- Retrieve the Home item using Sitecore.Context.Site.StartPath - Use GetChildren() method"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the danger of using a method like Axes.GetDescendants()?","acceptedAnswer":{"@type":"Answer","text":"It retrieves recursively all children of all children of the item. If invoked in an item near the root it would load the entire tree in memory, with the corresponding performance penalty."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you get the children items of an item?","acceptedAnswer":{"@type":"Answer","text":"- .Children - .GetChildren()"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the difference between GetChildren() and GetDescendants()?","acceptedAnswer":{"@type":"Answer","text":"- GetChildren: Returns all direct children of an item - GetDescendants: Return all items under an item"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How can you populate the property of a ViewModel and still support inline editing in the Experience Editor?","acceptedAnswer":{"@type":"Answer","text":"By using the Render() method in the FieldRenderer class."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you put an item into the Editing state?","acceptedAnswer":{"@type":"Answer","text":"By creating an Edit Context."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What methods do you invoke when you begin and finish editing an item through the API?","acceptedAnswer":{"@type":"Answer","text":"- .Editing.BeginEdit() - .Editing.EndEdit()"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why would you preferably avoid sorting items in the code (LINQ etc.)?","acceptedAnswer":{"@type":"Answer","text":"It might confuse the authors to see items appear in different order to the order shown in the Content Editor."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How can you skip certain items when you build the navigation?","acceptedAnswer":{"@type":"Answer","text":"Use LINQ to filter by template or value of specific fields."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How can you run part of your code with a set of privileges different from those of the context user?","acceptedAnswer":{"@type":"Answer","text":"- UserSwitcher - SecurityDisabler"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What two core services conform to the Sitecore Services Client?","acceptedAnswer":{"@type":"Answer","text":"- ItemService - Access to regular Sitecore items - EntityService - Access to business objects"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is an item bucket?","acceptedAnswer":{"@type":"Answer","text":"A container that allows you to hide innumerable items within, while still being easily retrievable."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you find items in buckets?","acceptedAnswer":{"@type":"Answer","text":"Content Search API"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why would an item show in the content tree even though it is a child of a bucketed item?","acceptedAnswer":{"@type":"Answer","text":"It's not bucketable."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What part of Sitecore is in charge of generating URLs?","acceptedAnswer":{"@type":"Answer","text":"LinkManager"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Where can you customize how URLs are rendered globally?","acceptedAnswer":{"@type":"Answer","text":"In the LinkManager section of the Web.config."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How can you get Sitecore to produce translated URLs?","acceptedAnswer":{"@type":"Answer","text":"By setting the LinkManager to use the item's Display name."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why is it important to have friendly structures within your content tree?","acceptedAnswer":{"@type":"Answer","text":"Because they dictate the segments within your URLs."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"In which situations would you want to change the links generated for an individual link?","acceptedAnswer":{"@type":"Answer","text":"If you need to force the language of content that is to be rendered from Sitecore."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How can you globally change characters in the URLs that are generated and resolved from Sitecore?","acceptedAnswer":{"@type":"Answer","text":"Using the encodeNameReplacements option in the Web.config."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How would you disable .aspx being added to all URLs that are generated from Sitecore?","acceptedAnswer":{"@type":"Answer","text":"By changing the addAspxExtension attribute of the LinkManager."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How would an author cause a broken link when renaming an item?","acceptedAnswer":{"@type":"Answer","text":"The URL is usually made using item names. If the page was bookmarked in the browser, it will no longer work. You will need to implement 301 redirect logic."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why should you never cache a component that displays personal information?","acceptedAnswer":{"@type":"Answer","text":"Another visitor to your site could see that information."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which of the following commands is used to enable caching for a site?","acceptedAnswer":{"@type":"Answer","text":"cachehtml = \"true\""}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What kind of information is stored in the Prefetch cache in Sitecore?","acceptedAnswer":{"@type":"Answer","text":"Items that Sitecore will need to access during and just after initialization of the instance."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why would your team decide to disable the Prefetch cache in your Sitecore solution?","acceptedAnswer":{"@type":"Answer","text":"The cycle of continuous caching and the prefetching of too many items will increase the load on the SQL server and may degrade the startup time of your application."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"You have a component you would like cached anywhere it is used. Where would you define its cache settings?","acceptedAnswer":{"@type":"Answer","text":"On the component definition item in the Sitecore tree."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"You have a component that you want cached on every Event Details page. Where would you define its cache settings?","acceptedAnswer":{"@type":"Answer","text":"On the component on the Event Details template's Standard Values item."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How are workflows defined?","acceptedAnswer":{"@type":"Answer","text":"Through definition items under /sitecore/settings/workflow."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you bind a particular workflow with a certain type of item?","acceptedAnswer":{"@type":"Answer","text":"By setting the initial workflow in the template's Standard Values."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What are some advantages of using workflows?","acceptedAnswer":{"@type":"Answer","text":"- Acquire content approval - Prevent unwanted publishing - Automatic numbered versioning - Content testing - Publishing to a preview target"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What are the two consequences of making a state Final?","acceptedAnswer":{"@type":"Answer","text":"- Items in it can be published - Sitecore creates a new version when a non-admin user tries to edit it"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What can you find in the workbox?","acceptedAnswer":{"@type":"Answer","text":"Available commands on items grouped by workflow."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the point of the Write access right state?","acceptedAnswer":{"@type":"Answer","text":"To override the Write Permission for an item while it's in a particular state."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the purpose of the extranet domain?","acceptedAnswer":{"@type":"Answer","text":"To provide access to the website for specific roles and users."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"A user has been locked out by multiple login attempts using the wrong password. How should you resolve this?","acceptedAnswer":{"@type":"Answer","text":"Use the Unlock button in the User Manager."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the best practice for setting permissions for a user?","acceptedAnswer":{"@type":"Answer","text":"Create roles and assign users to them."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"A user is assigned to a role and suddenly has no access to content that was previously available. What happened?","acceptedAnswer":{"@type":"Answer","text":"The new role has explicit access denied for that content, which overrides the granted access of the other roles."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which roles access right will take precedence?","acceptedAnswer":{"@type":"Answer","text":"deny"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What are the two types of accounts?","acceptedAnswer":{"@type":"Answer","text":"- Users - Roles"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Name some Sitecore Security Apps.","acceptedAnswer":{"@type":"Answer","text":"- Access Viewer - Security Editor - Role Manager - User Manager"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which user is bound to unauthenticated requests to the frontend website?","acceptedAnswer":{"@type":"Answer","text":"extranet\\Anonymous"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What role does a user need to be able to log in to the Sitecore backend?","acceptedAnswer":{"@type":"Answer","text":"Sitecore Client Users"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Can you assign a user to a role from a different domain?","acceptedAnswer":{"@type":"Answer","text":"Yes"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Where are access rights stored?","acceptedAnswer":{"@type":"Answer","text":"In the Standard field on items."}}],"educationalAlignment":[{"@type":"AlignmentObject","alignmentType":"educationalSubject","targetName":"Sitecore 10 .NET Developer Certification Exam"}]} </script> </body> </html>