Sitecore Experience Platform Questions [Module 1] Flashcards

A set of questions based on the videos from Sitecore Training Site

1
Q

Describe the three Sitecore databases

A
  • Core
  • Web
  • Master
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Describe the two main Sitecore Server Roles

A
  • Content Delivery

* Content Management

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

The Content Delivery server should have access to the master database? (true | false)

A

false

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

(true | false) The master database has access to all items in all versions in all languages

A

true

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

(true | false) The Web database has just the published versions from all items in all languages

A

true

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

(true | false) I should be able to create items in the web database

A

false

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

(true | false) The web database should be treated as a read-only DB

A

true

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

(true | false) You cannot publish a Sitecore website using the Content Editor

A

false

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

How is named the person that creates content in Sitecore

A
  • Content Authors
  • Editors
  • Content Editors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Describe the activities that happen when you publish a Sitecore site

A
  • New information from the master database is applied in the web database.
  • Edited content in the master database is edited in the web database
  • Removed content in the master database is removed in the web database.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

(true | false) xDB and xConnect introduces new server roles and can be used in separated servers

A

true

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

(true|false) Is a good practice to write SQL Queries to access Sitecore Database

A

false

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

(true|false) You can access data templates using id, path and template name

A

true

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

(true|false) when you try to retrieve some content from xDB that doesn’t exist, you can either receive a null or a thrown exception

A

true

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

(true|false) Items are represented by the Sitecore.Data.Items.Item class

A

true

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

(true|false) You cannot retrieve items from the database using the item name

A

false

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

(true|false) Sitercore.ItemIDs.PlaceholderSettingsRoot isn’t a valid constant

A

false

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

(true|false) A good practice to bypass security context is to use the SecurityDisabler class

A

false

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

How to programmatically copy content from a place to other in Sitecore

A

use the CopyTo method specifying the new location and the new name.

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

(true|false) Use the property “.Parent” to access the parent item

A

true

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

How to access the child items?

A

Use the property “.Children” or the “.GetChildren()” method

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

Where is located the versions from an item?

A

In the “.Version” property

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

(true|false) everything in Sitecore is an item?

A

true

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

List the Rendering Types in Sitecore

A
  • View Rendering
  • Controller Rendering
  • Method Rendering
  • Item Rendering
  • URL Rendering
  • XSLT Rendering
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
(true|false) When using view rendering you don't have to specify the controller for Sitecore
true
26
(true|false) URL Rendering is a perfect fit when you want to render content from another site into your Sitecore pages
true
27
(true|false) In the media library, is possible to import executable files?
False. You can upload documents, images, videos, and audio files.
28
Explain the difference between Media File and Media Item
The media file is the digital file imported by the user to the media library, the media item is a Sitecore item containing a set of fields including the media file imported by the user.
29
How does the media is stored in Sitecore?
The media is stored in Sitecore as blob by default, but also can be stored at the file system or at another file repository.
30
What is a package in Sitecore?
A package is an alternative to move Sitecore items from an installation to another.
31
What is the package limit size?
2 GB
32
Which type of item can be exported to the package?
1. Code files 2. Sitecore items 3. Configuration files
33
How to setup where Sitecore keep the packages?
In the web.config in the PackagePath setting
34
What is the difference between getting the package files dynamically and statically?
Dynamically: You create a set of filters that Sitecore uses to get the desired items Statically: You set which folders and files Sitecore should export.
35
List All the Data field types in Sitecore
* Analytics * Simple * Lists * Links * System * Developer
36
List the Simple field types
* Single line Text * Multine text * Password * Integer * Number * Date * Datetime * Checkbox * Rich Text Editor * Word Document * File * Media
37
List the List field Types
* Droplist * Treeview * Treeview Ex * Multilist * Checklist * Multilist with Search * Treelist with Search * Grouped Droplink * Grouped Droplist * Name Value list
38
List the Link field types
* Droplink * Droptree * General Link * General link with search
39
(true|false) The password field is hashed in the DB
false
40
(true|false) The Media item is stored in binary format
true
41
(true|false) The non-media items are stored in text format
true
42
What is the default format of the DateTime field
yyyyMMddThhmmss
43
Which list types stores item GUIDs?
* Checklist * Droptree * Multilist * Treelist * Treelist Ex
44
How the list type fields save the selected items?
They're saved as text separated by the pipe character
45
What is the function of the Source property in the template fields
They refer to the source item where the child items will be listed.
46
(true|false) Droplink stores the item id
true
47
(true|false) Droplist stores the item name
true
48
Where to find information about versions older than Sitecore 8
Sitecore Developer Portal
49
Where to find information about versions from Sitecore 8 on?
Sitecore Documentation
50
Information about known issues, problems and common questions
Sitecore Knowledge Base
51
Aggregated content from Sitecore
Sitecore Feed
52
What are buckets in Sitecore?
Buckets are a repository to store a large number of items in an unstructured way
53
Is that possible to keep a parent-child relationship for items inside of the bucket?
yes
54
By default, how the items are organized inside of the bucket?
Items are organized based on the date
55
(true|false) Non-bucktable items inside of an item bucket are also hidden?
false
56
(true|false) After marking an item/template as bucktable is necessary to synchronize the bucket item
true
57
Describe how to set up a template as bucktable
Navigate to the desired template, in the ribbon area, check that the standard values checkbox is checked, in the template content section, open the Item bucket tab, after that click in the "bucktable" checkbox.
58
Describe all server Roles
* Content Management * Content Delivery * Standalone * Reporting * Processing
59
Describe the Content management server role
This role means that the current server is designed to create and publish content
60
Describe the content delivery server role
On this mode, the server is used to render the created content
61
Describe the processing server role
On this mode, the server is used to extract the raw data collected and transform it into report data
62
Describe the reporting server role
Collects information for all sitecore data sources and delivery them to the reporting applications
63
Describe the stand alone server role
This server executes all the roles (reporting, processing, content delivery and content management) at the same time
64
List the three major products from Sitecore
1. Sitecore Experience Manager (XM) 2. Sitecore Experience Platform (XP) 3. Sitecore Experience Commerce (XC)
65
Describe the functionalities of Experience Manager
This product works as a Web Content Management (WCM) system, where you can create, manage and delivery content for the final users.
66
Describe the functionalities of the Experience Platform
This product delivers all the XM features plus Marketing and customer intelligence tools.
67
(true|false) xConnect and xDb are features from the XP product?
true
68
(true|false) xConnect and xDb are out of the XM product
true