Learning for the Sitecore 9 exam Flashcards
Where is the home item for your site is defined?
Sitecore.config
How do you retrieve your site’s start item location?
Sitecore.Context.Site.StartPath;
How do you install a Sitecore package from within Sitecore?
Control Panel>Administration>Install a Package
What’s the default base template for all templates?
Standard Template
How can you extend the Sitecore Framework?
- Packages
- Modules
- Update Packages
Which tasks can Sitecore Rocks plugin for visual studio be used to perform?
- Manage Packages
- Create Anti-Packages
- Create Items
- Create Templates
What is an Anti-Package?
Helps you create a package with an option to roll back the changes
The Sitecore Package Designer helps you to…?
- Add Items statically or dynamically
- Set installation options
How can you install a package in Sitecore?
- Installation Wizard
- Sitecore Rocks
- Control Panel
Where is the default site configuration located?
/app_config/Sitecore.config under site
What static class contains the information about the current HTTP request and your site installation?
Sitecore.Context
Where is the Home page or start item for your site defined in the Sitecore.config?
Rootpath and Startitem
How can you retrieve your site’s start item location programmatically?
String startPath = Sitecore.Context.Site.StartPath
Item Homepage = Sitecore.Context.Database.GetItem(startPath)
What’s the path of the Single website and Home Item?
/Sitecore/Content/Home
What are the recommended practices for a multisite implementation?
- Creating a folder for each site
- Ensuring that each site folder has its own Home item
- Storing shared content outside of each site folder
Visual Studio is the main tool to…?
- Configure and manage Sitecore project
- Code Layouts and renderings
- Manage configuration files
True or false; Everything in site is an item
True
An item consists of…?
- Fields
- Field Sections
True or false; the item is an addressable unit of data?
True
True or false; templates are the foundation of all content in Sitecore?
True
What do templates define?
- Type of item
- Field sections
- Field names
- Field types
What does the field type determine for the field in the Content Editor and the Experience Editor?
The Editor Control
True or false; modifying the base template of the template affects all items immediately?
True
True or false; all templates inherit from the standard template?
True