Ferrar Carter
Quiz by , created more than 1 year ago

Para la certificación de Hybris

4321
4
1
Ferrar Carter
Created by Ferrar Carter about 7 years ago
Close

MOCK 2 - HYBRIS

Question 1 of 80

1

What describe best the JALO layer ?

Select one or more of the following:

  • means Jakarta Logic

  • mix data and business logic

  • it’s a piece of the service layer

  • JALO classes are generated during runtime

Explanation

Question 2 of 80

1

For the following query to be imported successfully what changes need to be done ?

$productCatalog=apparelProductCatalog
$productCatalogName=Apparel Product Catalog

INSERT_UPDATE ApparelProduct;code;$catalogVersion;unit(code); supercategories(code,$catalogVersion)
;300441142;;pieces;Blue Tomato,caps

Select one or more of the following:

  • add a macro for catalog version

  • change the attribute header INSERT_UPDATE to INSERT_UNIQUE

  • mark code with [unique=true]

  • use the type Product instead of ApparelProduct

Explanation

Question 3 of 80

1

Choose the correct file to localize HMC entries in English (extension’s name is hybhubcore)?

Select one of the following:

  • hybhubcore/resources/localization/hybhubcore-locales_en.properties

  • hybhubcore/resources/localization/hmc-locales_en.properties

  • hybhubcore/hmc/localization/hybhubcore-locales_en.properties

  • hybhubcore/resources/localization/english/hybhubcore.properties

Explanation

Question 4 of 80

1

Select the right definition for the tenant concept ?

Select one of the following:

  • a single SAP Hybris installation with multiple localextensions.xml

  • a clustered SAP Hybris installation with one database

  • a single SAP Hybris installation with distinct sets of data

  • a single SAP Hybris installation with a speciic database for each store

Explanation

Question 5 of 80

1

When do you use cluster aware events ?

Select one of the following:

  • when you run a cluster all events need to be cluster aware

  • since SAP Hybris V6 all events are cluster aware

  • when you need to run an event from a specific node

  • when you need to broadcast an event to all nodes

Explanation

Question 6 of 80

1

Why does the rule engine (used by the promotion engine) include a versioning and archiving mechanism ?

Select one of the following:

  • to keep an history of all promotions that ever existed on the system

  • to have a consistent representation of the applied rules when promotions were applied

  • to be able to work on different time zone

  • all item types in SAP Hybris are archived and versioned

Explanation

Question 7 of 80

1

What is wrong with the following item type definition ?

1 <itemtype code="Subscription" extends="GenericItem">
2 <attributes>
3 <attribute type="java.lang.String" qualifier="code">
4 <persistence type="property" />
5 <modifiers unique="true"/>
6 </attribute>
7 </attributes>
8 <indexes>
9 <index name="codeIdx">
10 <key attribute="code"/>
11 </index>
12 </indexes>
13 </itemtype>

Select one of the following:

  • missing a Jalo class definition

  • an index needs to be on at least two attributes

  • GenericItem is not a valid item

  • missing deployment data

Explanation

Question 8 of 80

1

Out of the box, what CMS items are used to build the top navigation menu ?

Select one or more of the following:

  • NavigationBarComponent

  • TopMenuNavigationComponent

  • CMSNavigationNode

  • CMSLinkComponent

Explanation

Question 9 of 80

1

What steps you need to have to fulfill in order to create a new cronjob ?

Select one or more of the following:

  • create a new cron job expression from Spring

  • implement a job

  • create a new item type extending CronJob

  • add the new cronjob in your local.properties

Explanation

Question 10 of 80

1

What statements are false about catalogs synchronization ?

Select one or more of the following:

  • only existing items can be updated

  • no items can be deleted

  • all item types are being synchronized

  • the same catalog can a target and a source

Explanation

Question 11 of 80

1

Cached data are removed from the cache when ?

Select one or more of the following:

  • the cache is full

  • a cache invalidation notification is received from another node

  • an item is created

  • an item is removed

Explanation

Question 12 of 80

1

What statements are true about classification ?

Select one of the following:

  • classification is horizontal unlike categorization which is vertical

  • a product can be classified by only one classification attribute

  • classification is not being used by SAP Hybris because its model type definition is flexible

  • classification is not compatible with SOLR

Explanation

Question 13 of 80

1

What can you do from an addon ?

Select one or more of the following:

  • add front end files (JSP, HTML, CSS and Javascript)

  • generate or customize the data model

  • declare new Spring Services or Facades or customize existing

  • declare new Controllers or customize existing

Explanation

Question 14 of 80

1

What configuration file has the highest priority ?

Select one of the following:

  • project.properties from the platform extension

  • advanced.properties from the platform extension

  • local.properties from the config extension

  • local.properties from the custom extension

Explanation

Question 15 of 80

1

When you create the following item type A what classes are being generated ?

1 <itemtype code="A" extends="ItemB" generate="false">
2 <attributes>
3 <attribute type="java.lang.String" qualifier="code">
4 <persistence type="property" />
5 <modifiers unique="true"/>
6 </attribute>
7 </attributes>
8 </itemtype>

Select one of the following:

  • A.java

  • GeneratedA.java

  • AJalo.java

  • AModel.java

Explanation

Question 16 of 80

1

When configuring the Apache SOLR indexer mode what does DIRECT means ?

Select one of the following:

  • access the embedded Apache SOLR server

  • send request to Apache SOLR using its REST API

  • all index operations would be made directly on the index

  • all index operations would be made on a temporary index before indexes are switch

Explanation

Question 17 of 80

1

Is it possible for two tenants to use different extensions ?

Select one of the following:

  • yes using two different localextensions.xml, one for each tenant

  • yes using allowed.extensions and forbidden.extensions inside a tenant specific configuration file

  • yes using .allowed.extensions and .forbidden.extensions inside your configuration

  • no, SAP Hybris is not compatible with this

Explanation

Question 18 of 80

1

How do you install a new addon ?

Select one of the following:

  • add the addon inside your localextensions.xml

  • add the addon under external-dependencies.xml

  • use the ant target addoninstall

  • use the ant target syncaddons

Explanation

Question 19 of 80

1

Is this a valid Flexible Search Query ?

select {p.description[fr]:o} from {Product as p} where {p:pk} in
( {{ select {p:pk} from {product as p} where {p:code} like '%0%' }} )

Select one of the following:

  • no

  • yes if we delete :o

  • yes if we delete the whole where statement

  • yes

Explanation

Question 20 of 80

1

Out of the box how can you access the assisted service module functionalities ?

Select one of the following:

  • from the targeted storefront add a request parameter asm equal true

  • from the backoice open the asm perspective

  • go to the /asmcockpit

  • go to the /cscockpit

Explanation

Question 21 of 80

1

How can you initialize SAP Hybris ?

Select one or more of the following:

  • using ant initialize

  • from the HAC

  • from the HMC

  • from the backoffice

Explanation

Question 22 of 80

1

What is highest B2B organization block ?

Select one of the following:

  • company

  • unit

  • division

  • region

Explanation

Question 23 of 80

1

In order to force a product to be listed on top of a give category, what out of the box features should you use ?

Select one of the following:

  • boost rules

  • hero rules

  • hero products

  • top products

Explanation

Question 24 of 80

1

What payment steps is described by the following definition ?

1 Transfer back money to a customer account, the transfer not being associated with any order or previous transactions.

Select one of the following:

  • capture

  • stand alone refund

  • capture.

  • refund

Explanation

Question 25 of 80

1

The BTG module is used to ?

Select one of the following:

  • personalize a web applications based on customers

  • business to groups

  • provides a upgraded version of the CMS cockpit

  • add business targets accessible from the backoice

Explanation

Question 26 of 80

1

What ant target should you use to start working on a new B2C implementation ?

Select one of the following:

  • ant installer -r b2c_acc

  • ant extgen

  • ant modulegen

  • ant accelerator

Explanation

Question 27 of 80

1

What Spring context has the larger scope ?

Select one of the following:

  • web context

  • core context

  • shared context

  • international context

Explanation

Question 28 of 80

1

During an Impex import what will happen when the import process can’t find a reference to an item type ?

Select one of the following:

  • import process will fail and move onto the next ile

  • the value line would be ignored

  • the value line would be saved and a new attempt would be made

  • the value line would be saved and attached to an error log entry

Explanation

Question 29 of 80

1

When loading available prices what is the price factory trying to match ?

Select one or more of the following:

  • customer / customer group

  • product / product group

  • date range if any configured

  • promotion / promotion group

Explanation

Question 30 of 80

1

What is the problem with the following business process action ?

1 package com.hybhub.core.process.action;
2
3 import de.hybris.platform.core.model.order.OrderModel;
4 import de.hybris.platform.orderprocessing.model.OrderProcessModel;
5 import de.hybris.platform.processengine.action. AbstractSimpleDecisionAction;
6 import de.hybris.platform.servicelayer.model.ModelService;
7 import de.hybris.platform.task.RetryLaterException;
8
9 import javax.annotation.Resource;
10
11
12 public class HybhubSimpleAction extends AbstractSimpleDecisionAction< OrderProcessModel>
13 {
14
15 @Resource
16 private ModelService modelService;
17
18 @Override
19 public Transition executeAction(final OrderProcessModel orderProcess) throws RetryLaterException, Exception
20 {
21 OrderModel order = orderProcess.getOrder();
22
23 if(order!= null){
24 order.setNet(Boolean.TRUE);
25 modelService.save(order);
26 return Transition.OK;
27 }
28
29 return null;
30 }
31
32 }

Select one of the following:

  • it doesn’t always return a transition

  • it has not setter for the modelService attribute

  • it should implement Action

  • the package is wrong

Explanation

Question 31 of 80

1

What is true about the DefaultCMSComponentController controller ?

Select one or more of the following:

  • it will inject all attributes into the model

  • it will inject all front-end attributes (non system) into the model

  • it is used by default if no specific controller are implemented

  • it should be avoided

Explanation

Question 32 of 80

1

What is true about the following log extracted from the build process ?

[echo] catalog->(validation,commons) 6.0.0.0-SNAPSHOT [p*cib]

Select one or more of the following:

  • the catalog extension was automatically required

  • the catalog extension has a core module

  • the catalog extension is deprecated

  • the catalog extension is a platform extension

Explanation

Question 33 of 80

1

Choose the correct user rights definition to complete the following import query.

$START_USERRIGHTS
Type;UID;MemberOfGroups;Password;Target;read;change;create;delete; change_perm
UserGroup;employeegroup;;
<Choose the right answer to complete this>
$END_USERRIGHTS

Select one of the following:

  • ;;;;Media;true+;false;false;false;false

  • ;;;;Media;1;0;0;0;0

  • ;;;;Media;+;-;-;-;

  • ;;;;Media;granted;denied;denied;denied;denied

Explanation

Question 34 of 80

1

Which of the following components are deprecated ?

Select one or more of the following:

  • cockpit framework

  • Jalo layer

  • task engine

  • service layer

Explanation

Question 35 of 80

1

What is the correct way of configuring a new logger for the package com.hybhub.hybhubaddon ?

Select one of the following:

  • log4j.logger.com.hybhub.hybhubaddon = info

  • log4j.logger.hybhub.name = com.hybhub.hybhubaddon
    log4j.logger.hybhub.level = info
    log4j.logger.hybhub.appenderRef.stdout.ref = STDOUT

  • log4j2.logger.hybhub.name = com.hybhub.hybhubaddon
    log4j2.logger.hybhub.level = info
    log4j2.logger.hybhub.appenderRef.stdout.ref = STDOUT

  • log4j2.logger.com.hybhub.hybhubaddon = info
    log4j2.logger.com.hybhub.hybhubaddon = STDOUT

Explanation

Question 36 of 80

1

The OCC webservices are ?

Select one of the following:

  • restful API

  • restless API

  • soap API

  • oAuth API

Explanation

Question 37 of 80

1

What statements are wrong about converters ?

Select one or more of the following:

  • they all have the same bean parent abstractPopulatingConverter

  • they contain a list of attributes to convert

  • they contain a list a populators to call

  • they are un-aware of the object type they are converting

Explanation

Question 38 of 80

1

What is wrong with the following extensioninfo.xml file ?

<extensioninfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="extensioninfo.xsd">
<extension abstractclassprefix="Generated" classprefix=" HybhubFacades" name="hybhubfacades">
<requires-extension name="hybhubfacades"/>
<requires-extension name="hybhubcore"/>
<coremodule generated="true" manager="de.hybris.platform.jalo .extension.GenericManager" packageroot="com.hybhub. facades"/>
</extension>
</extensioninfo>

Select one of the following:

  • missing web module declaration

  • missing core module declaration

  • missing hmc module declaration

  • dependency issue

Explanation

Question 39 of 80

1

Is the following dynamic attribute handler correct ?

1 package com.hybhub.core.model.dynamic;
2
3 import de.hybris.platform.core.model.product.ProductModel;
4 import de.hybris.platform.servicelayer.model.attribute. DynamicAttributeHandler;
5
6 public class HybhubDynamicHandler implements DynamicAttributeHandler< String, ProductModel>
7 {
8
9 @Override
10 public String get(ProductModel product)
11 {
12 return product.getCode() + " - " + product.getDescription();
13 }
14
15 }

Select one of the following:

  • no, it must extends ServiceLayerItems

  • no, it must also implement a setter

  • no, it must be in a different package

  • yes

Explanation

Question 40 of 80

1

What statements are true about collections under item type definitions ?

Select one or more of the following:

  • a collection is comma-separated list of PKs

  • collections are preferred over relations

  • at runtime collections are loaded into a collection of objects

  • collections can store as many objects as needed

Explanation

Question 41 of 80

1

Which of the following definition is the correct one for unit tests ?

Select one of the following:

  • requires access to the database and need a running SAP Hybris

  • requires access to the database and don’t need a running SAP Hybris

  • does not require access to the database and don’t need a running SAP Hybris

  • require access to the database and starts a transaction for each test

Explanation

Question 42 of 80

1

What is the following Spring configuration doing ?

<context:annotation-config/>
<context:component-scan
base-package="...,..."
scope-resolver="..."/>

Select one of the following:

  • add a new XML Spring configuration

  • load all detected components from the given packages

  • create a new bean scope

  • configure a request filter

Explanation

Question 43 of 80

1

When you synchronize a Media object from a Staged to an Online catalog what happens to the media file ?

Select one of the following:

  • the Media file is referenced by the Online and Staged Media

  • the Media file is copied to the Online data folder and referenced by the Online Media

  • the Media file is moved to a shared folder and referenced by both Media

  • the Media file is embedded inside the file attribute and synchronize like all other attributes

Explanation

Question 44 of 80

1

Select the right definition for the facade layer.

Select one of the following:

  • builds a complex object using simple objects and using a step by step approach

  • separates application’s concerns

  • hides the complexities of the system and provides a simplified interface to the client

  • add new functionality to an existing object without altering its structure

Explanation

Question 45 of 80

1

Select the existing Impex header mode.

Select one of the following:

  • INSERTED

  • UPDATE_INSERT

  • REMOVE

  • DELETE

Explanation

Question 46 of 80

1

How could you configure a new hot folder ?

Select one of the following:

  • from the HAC

  • from the HMC

  • from the import cockpit

  • from a Spring config file

Explanation

Question 47 of 80

1

How do you create a new interceptor ?

Select one or more of the following:

  • declare it along with the item type definition

  • provide an implementation of one of Interceptor interface

  • run a system update

  • add a Spring bean mapping the item type and the Interceptor implementation

Explanation

Question 48 of 80

1

A checkout step has ?

Select one or more of the following:

  • checkoutGroup reference

  • checkoutStepValidator reference

  • transitions map

  • progressBarId string

Explanation

Question 49 of 80

1

What are are valid legacy cockpit areas ?

Select one or more of the following:

  • navigation

  • item

  • browser

  • editor

Explanation

Question 50 of 80

1

When running an initialization on one tenant SAP Hybris will ?

Select one of the following:

  • delete all tables

  • delete all known tables

  • delete all known tables starting with the tenant table prefix

  • delete and recreate the database

Explanation

Question 51 of 80

1

When creating a new item how do you generate a new primary key ?

Select one of the following:

  • using java.util.UUID.randomUUID()

  • using the primaryKeyService

  • primary keys creation is automatically handled by the database

  • primary keys creation is automatically handled by the service layer

Explanation

Question 52 of 80

1

How could you declare configure an attribute to be encrypted ?

Select one of the following:

  • <attribute qualifier="sensible" autocreate="true" type="java.lang. String">
    2 <persistence type="property"/>
    3 <modifiers encrypted="true"/> 4 </attribute>

  • <attribute qualifier="sensible" autocreate="true" type="encrypted: java.lang.String">
    2 <persistence type="property"/>
    3 </attribute>

  • <attribute qualifier="sensible" autocreate="true" type="java.lang. String">
    2 <persistence type="property" encrypted="true"/>
    3 </attribute>

  • <attribute qualifier="sensible" autocreate="true" type="java.lang. String">
    2 <modifiers type="property" encrypted="true"/>
    3 </attribute>

Explanation

Question 53 of 80

1

Which item types exist ?

Select one or more of the following:

  • collectiontype

  • enumtype

  • atomictype

  • listtype

Explanation

Question 54 of 80

1

A customer segment could be executed in ?

Select one or more of the following:

  • optimized processing

  • full processing

  • jalo processing

  • complete processing

Explanation

Question 55 of 80

1

Why a Spring MCV controller needs to return a String ?

Select one of the following:

  • to return it as an HTML page

  • to load a view

  • to load a servlet

  • to load a model

Explanation

Question 56 of 80

1

What features are available through the Order Management Module (formally OMS) ?

Select one or more of the following:

  • order splitting

  • payment

  • sourcing

  • promotion engine

Explanation

Question 57 of 80

1

Why do you need to define stop words for for your search configuration ?

Select one of the following:

  • to ignore configured words while searching

  • to boost configured words while searching

  • to stop the query after a configured word

  • to split the query in two queries

Explanation

Question 58 of 80

1

What are the two main components of the rule engine ?

Select one or more of the following:

  • rule processor

  • rule matcher

  • rule executor

  • rule builder

Explanation

Question 59 of 80

1

How could you improve the following code (groovy) ?

1 import de.hybris.platform.processengine.enums.ProcessState
2
3 def businessProcessService = spring.getBean("businessProcessService")
4 def modelService = spring.getBean("modelService")
5
6 def process = businessProcessService.createProcess(UUID.randomUUID(). toString(), "myProcess")
7 modelService.save(process)
8
9 businessProcessService.startProcess(process)
10
11 modelService.refresh(process)
12 if(ProcessState.SUCCEEDED != process.getProcessState()){
13 businessProcessService.startProcess(process)
14 }

Select one or more of the following:

  • use the method T startProcess(String arg0, String arg1); to create a process

  • delete the second call trying to start the business process

  • delete the useless call to save

  • generate a unique identifier for the business process

Explanation

Question 60 of 80

1

What statements are true about the following table (SQL DDL for HSQL) ?

1 CREATE CACHED TABLE b2bbudgetslp
2 (
3 ITEMPK BIGINT,
4 ITEMTYPEPK BIGINT,
5 LANGPK BIGINT,
6 p_name NVARCHAR(255),
7 PRIMARY KEY (ITEMPK, LANGPK)
8 );

Select one of the following:

  • table prefix is b2b

  • the item b2bbudgets has only one attribute

  • contains localized attributes for b2bbudgets item

  • it has 4 primary keys

Explanation

Question 61 of 80

1

Why would you use classification ?

Select one of the following:

  • to optimize Apache SOLR requests

  • to have dynamic product features

  • to speed up search

  • to unify product and category attributes

Explanation

Question 62 of 80

1

Which facet search configuration attributes give you the ability to redirect a user for a specific search request ?

Select one of the following:

  • stopwords

  • keywords

  • redirectwords

  • matchwords

Explanation

Question 63 of 80

1

What statements are wrong about extensions ?

Select one of the following:

  • they have to be inside the bin folder

  • they need to have a dependency to yempty

  • they can written using Groovy

  • they are always automatically loaded

Explanation

Question 64 of 80

1

What statements are true about the SAP Hybris server ?

Select one or more of the following:

  • based on Apache Tomcat

  • good for production

  • compatible with EJB

  • can be started from the command line

Explanation

Question 65 of 80

1

When you run an impex import query from the HAC with the default configuration what statements are true ?

Select one of the following:

  • you are running distributed impexes

  • you are using the service layer

  • you are using the jalo layer

  • import relaxed is activated

Explanation

Question 66 of 80

1

Which of the following would be good uses for a SAP Hybris CronJob ?

Select one or more of the following:

  • synchronizing the stock level with an external warehouse once per day

  • notify the System Administrator when the peak load on the server passes a critical point

  • perform an inventory once per week at midnight

  • any task that isn’t database related, cronjobs are designed to perform operating System tasks, not database system tasks

Explanation

Question 67 of 80

1

Content slots for page template are ?

Select one or more of the following:

  • place holder for CMS component

  • place holder for JSP tags

  • shared across all pages using the page template

  • configured on the JSP view page

Explanation

Question 68 of 80

1

Which bean would be loaded from getBean(“bean”) ?

1 <bean name="stringBean" class="java.lang.String" >
2 <constructor-arg><value>my String Name</value></constructor-arg>
3 </bean>
4
5 <bean id="stringBean" class="java.lang.String" >
6 <constructor-arg><value>my String ID</value></constructor-arg>
7 </bean>
8
9 <alias name="stringBean" alias="bean" />

Select one of the following:

  • my String Name

  • my String ID

  • a new String

  • none

Explanation

Question 69 of 80

1

Is it possible to add new enumeration values by runtime ?

Select one or more of the following:

  • no

  • yes if you are using JRebel

  • yes if the enumeration is dynamic

  • yes if the enumeration is a subtype of the HybrisEnumValue class

Explanation

Question 70 of 80

1

What a POS is ?

Select one of the following:

  • a warehouse

  • a physical store

  • a web store

  • a geolocalization service

Explanation

Question 71 of 80

1

What statements are wrong about Backoffice widgets ?

Select one of the following:

  • widget can extend each other

  • widget ids must be unique or the compilation fails

  • views are implemented using JSP tags

  • widgets can have parameters

Explanation

Question 72 of 80

1

When writing unit tests how should you simulate pojo dependencies to external services, facades… ?

Select one of the following:

  • the test class should extend HybrisUnitTests

  • the test class should extend ServicelayerTest

  • use Mockito to stub dependencies

  • wrap all tests inside a transaction

Explanation

Question 73 of 80

1

What is the notification framework used for ?

Select one of the following:

  • notify cockpit users

  • notify customers

  • notify administrators

  • facade for the event service

Explanation

Question 74 of 80

1

What statements are true about stock levels ?

Select one or more of the following:

  • the stock service can check stock levels across multiple warehouses

  • a single warehouse can contain multiple stock levels for the same product

  • a base store is attached to a single warehouse

  • a product can be sold even if it has no stock

Explanation

Question 75 of 80

1

The CS cockpit was designed for ?

Select one of the following:

  • customer segment management

  • order life cycles management

  • css rendering management

  • customer security management

Explanation

Question 76 of 80

1

SAP Hybris semi-session failover mechanism allows to ?

Select one of the following:

  • automatically redirected users to the login page of a new node when on node goes down

  • to transfer all sessions of the failing node to other available nodes without loss of data

  • to always have all sessions replicated on every nodes

  • to automatically redirect users to a temporary page

Explanation

Question 77 of 80

1

Choose the flexible query which has generated the following SQL query ?

SELECT item_t0.PK, item_t1.p_code
FROM products item_t0 LEFT JOIN medias item_t1
ON item_t1.PK = item_t0.p_logo
WHERE ((item_t0.TypePkString=? AND (item_t1.TypePkString IS NULL OR ( item_t1.TypePkString=? ) )))

Select one of the following:

  • select {prd.pk}, {md.code} from {Product as prd left join Media as md on {md.pk} = {prd.logo}}

  • select {prd.pk}, {md.code} from {Product! as prd join Media! as md on {md.pk} = {prd}}

  • select {prd.pk}, {md.code} from {Product! as prd left join Media! as md on {md.pk} = {prd.logo}}

  • select {md.code} from {Product as prd left join Media! as md on {md.pk} = {prd.logo}}

Explanation

Question 78 of 80

1

What service should you use to save an model ?

Select one of the following:

  • persistenceService

  • jaloService

  • serviceLayerService

  • modelService

Explanation

Question 79 of 80

1

If you are testing a Flexible Search Restriction, the user you are running the query as ?

Select one of the following:

  • should be admin

  • should be flexiblesearchquery

  • should be a member of the searchquery group

  • should not be a member of the admin group

Explanation

Question 80 of 80

1

By default when you load an item from the service what is fetched inside the object ?

Select one of the following:

  • nothing all attributes are lazy loaded

  • only literal values

  • only references values

  • all

Explanation