Certification Test Questions Flashcards

1
Q

Where does the home item for your site is defined

a: Web.Config
b: Sitecore.config
c: Layers.config
d: App.config

A

Answer: b

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

How do you retrieve your site’s start item location?

a: Sitecore.Context.Site.StartPath;
b: Sitecore.Context.Site.root
c: Sitecore.Context.Site.PathStart
d: Sitecore.Context.Site.rootPath

A

Answer: a

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

How do you install a Sitecore package?

a: Control Panel > Administration > Install a Package
b: Marketing Panel > Administration > Install a Package
c: Dashboard > Administration > Install a Package
d: Administration > Install a Package

A

Answer: a

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

What’s the default base template for all templates?

a: Standard Template
b: Base Template
c: Standard Values
d: Template

A

Answer: a

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

How can you extend the Sitecore Framework?

a: Packages
b: Module
c: Update Package
d: Using SDK

A

Answer: a,b,c

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

Sitecore Rocks plugin for visual studio can be used to perform which tasks

a: Manage Packages
b: Create Anti-Package for undo functionality
c: Create Items
d: Create Templates
e: All of the above

A

Answer: e

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

What is an Anti-Package?

a: Helps you create a package with an option to roll back the changes
b: Helps you to import and delete the existing files
c: Helps you to export the package
d: None of the above

A

Answer: a

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

The Sitecore Package Designer helps you to

a: Add Items statically or dynamically
b: Sets installation options
c: Remove packages
d: None of the above

A

Answer: a,b

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

How can you install a package in Sitecore?

a: Installation Wizard
b: Sitecore Rocks
c: Control Panel
d: None of the above

A

Answer: a,b,c

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

Where is the default site configuration located?

a: /app_config/Sitecore.config under site
b: /app_config/Layer.config
c: /config/sitecore.config under site
d: Web.config under site

A

Answer: a

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

What static class contains the information about the current HTTP request and your site installation?

a: Sitecore.Context
b: Sitecore.Kernel
c: Sitecore.MVC
d: Sitecore.Presentation

A

Answer: a

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

Where the Home page or start item for your site is defined in the Sitecore.config?

a: Rootpath
b: Start item
c: Rootpath and Startitem
d: Site node

A

Answer: c

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

How can you retrieve your site’s start item location programmatically?
a:
String startPath = Sitecore.Context.Site.StartPath;
Item Homepage = Sitecore.Context.Database.GetItem(startPath);

b:
String startPath = Sitecore.Context.Site.rootPath;
Item Homepage = Sitecore.Context.Database.GetItem(rootPath);

c:
String startPath = Sitecore.Context.Site.path;
Item Homepage = Sitecore.Context.Database.GetItem(path);

d:
String startPath = Sitecore.Context.Site.rootpath;
Item Homepage = Sitecore.Context.Database.GetItem(rootpath);

A

Answer: a

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

What’s the path of the Single website and Home Item?

a: /Sitecore/Content/Home
b: /Sitecore/Home
c: /Sitecore/Item/Home
d: /inetpub/wwroot/Web/Home

A

Answer: a

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

What’s the recommended practices for a multisite implementation?

a: Creating a folder for each site
b: Ensuring that each site folder has its own Home item
c: Storing shared content outside of each site folder
d: All of the above

A

Answer: d

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

What version of visual studio works with the Sitecore project?

a: Visual Studio 2012
b: Visual Studio 2014
c: Visual Studio 2015 or higher
d: Visual Studio 2015

A

Answer: c

17
Q

Visual Studio is the main tool to:

a: Configure and manage Sitecore project
b: Code Layouts and renderings
c: Manage configuration files
d: All of the above

A

Answer: d

18
Q

Sitecore Rocks allows you to:

a: Create and manage site content from the Visual Studio
b: Create Presentation component items and code files
c: Integrate with your visual studio project
d: Use site management tools
e: Create and Install Sitecore packages
f: All of the above

A

Answer: f

19
Q

Everything in site is an item

a: True
b: False

A

Answer: a

20
Q

An item consist of:

a: Fields
b: Field Sections
c: Data
d: Content Tree

A

Answer: a,b

21
Q

The item is an addressable unit of data

a: True
b: False

A

Answer: a