Fdsafdsaasfafsda

Aaaaaa
 
What happen when you run the following Impex script when the currency doesn’t exist yet ?
-a UPDATE Currency ; isocode [ unique=true ] ; conversion ; d I g I t s ; symbol
What happen when you run the following Impex script when the currency doesn’t exist yet ?
 
a UPDATE Currency ; isocode [ unique=true ] ; conversion ; d I g I t s ; symbol
b ;GBP; 1 ; 2 ;£=Multi Choice

+1. The import fails, log an error and move on to the next file
+2. The import logs a warning and continue to resolve the remaining value lines
+3. The import logs a warning, creates a temporary file, and try to import it later on=1
+4. The import ignores non matching value lines when doing only UPDATE
1. The import fails, log an error and move on to the next file
2. The import logs a warning and continue to resolve the remaining value lines
3. The import logs a warning, creates a temporary file, and try to import it later on
4. The import ignores non matching value lines when doing only UPDATE
-b ;GBP; 1 ; 2 ;£=Multi Choice
What happen when you run the following Impex script when the currency doesn’t exist yet ?
-a UPDATE Currency ; isocode [ unique=true ] ; conversion ; d I g I t s ; symbol
-b ;GBP; 1 ; 2 ;£
1. The import fails, log an error and move on to the next file
2. The import logs a warning and continue to resolve the remaining value lines
3. The import logs a warning, creates a temporary file, and try to import it later on
4. The import ignores non matching value lines when doing only UPDATE
What assessments are correct about modules and extensions?
1. A module is a synonym of template
2. An extension is never used alone
3. A module includes a set of functionalities fulilled by one or more extensions
4. An extension holds source code and coniguration iles
What is a saved query ??
1. A query that has been cached by the service layer
2. A way of reusing a query from the lexible search service
3. A lexible search query saved inside the SavedQuery item type and reusable from the HMC
4. There is no such query
Why do you need to execute setantenv.sh or setantenv.bat before calling the build platform ?
1. To preload ant classes
2. To conigure your PLATFORM_HOME environment variable
3. If you already have ant installed you do need to call this script
4. TO conigure ant home and opts environment variable
Choose the correct deinition for the bean scope singleton
1. One shared instance, which will be returned by all calls to getBean with the given id
2. One shared instance per thread, which will be returned by all calls to getBean with the given id
3. Independent instance resulting from each call to getBean
4. One shared instance per tenant, which will be returned by all calls to getBean with the given id
What is the “batch=true” Impex header modiier ?
1. Creates an individual import context for each value line
2. Allows modifying more than one item for a combination of all unique attributes
3. Inserts line by batches, default batch size is 20
4. There is no such header modiier
What are the steps in order to create a backoice widget ?
1. Create a widget view
2. Create a widget model hook
3. Create a widget deinition
4. Execute ant widgetGen
What is correct definition of the LTU eviction strategy ?
1. The oldest element would be deleted first
2. The youngest element would be deleted first
3. The most unused element would be deleted first
4. This is not a valid eviction strategy
Which of the following statements are not true regarding the use of inheritance in SAP Hybris Item type definitions ?
1. All new item types must extend Object
2. All new item types must be declared within the Core extension
3. You can extend another item type only if it has been deined within the same extension
4. Item types are not compatible with inheritance
Which one of the following design patterns has this as its primary goal ; Provides a single, simplified interface to a complex system of mutually dependent interacting objects ?
1. Strategy
2. Model View Controller
3. Service Layer
4. Facade
If you are performing a flexible search query as the user admin* which of the following is true ?*
1. All restrictions on the search are ignored
2. You cannot perform a lexible search being admin
3. You will only see in the result for the admin catalog
4. At least one restriction must be conigured or no search will be performed
When executing an Impex import, which of the following is true ?
1. You can only import one item type per Impex file
2. Each line under header is a potential value line
3. You need to specify the location of the CSV value lines file
4. If you don’t specify a header the Impex framework will find a matching item type
OAUTH2 is
1. A library built by SAP Hybris to handle authentication
2. A library built by Spring to handle authentication
3. An application protocol like HTTP but for authorization
4. An authorization protocol
To load a localized resource bundle, what service should you use ?
1. L10NService
2. I18NService
3. CommonI18NService
4. CommerceCommonI18NService
How can you activate the cluster mode ?
1. Cluster mode is on by default
2. Cluster mode is always on
3. Configure clustermode
4. Configure clustering
What are the logging framework shipped with Hybris ?
1. LOG4J
2. LOG4J2
3. LOG4J3
4. SLF4J
What happen when you run the following Impex script when the currency doesn’t exist yet ?
A UPDATE Currency ; isocode [ unique=true ] ; conversion ; d I g I t s ; symbol
B ;GBP; 1 ; 2 ;£
1. The import fails, log an error and move on to the next file
2. The import logs a warning and continue to resolve the remaining value lines
3. The import logs a warning, creates a temporary file, and try to import it later on
4. The import ignores non matching value lines when doing only UPDATE
Why is it considered bad practice to call directly CartService.getSessionCart().getEntries().isEmpty() to test if a customer already has a cart ?
1. This will create a cart if none is yet existing and the cart creation is expensive
2. The customerCartService wrapper is preferred to the raw cart service
3. getSessionCart() is deprecated, use getInMemoryCart() instead
4. getEntries() could be null
What is the correct definition of the Spring MVC dispatcher servlet ?
1. Receives incoming API requests and dispatch them to the right extension
2. Process all incoming requests made to the root path
3. Servlet responsible to find a matching controller and view to generate a response
4. Servlet responsible to load data from the database, load the JSP view and delegate the request handling to a matching controller
What template do you use do create a new cockpit ?
1. ycockpit
2. cockpit
3. ybackoice
4. backoice
Which of the following cockpit import by convention files have a correct path and name ?
1. cockpitextension/resources/cockpitextensionadmin/cscockpit/all/listViewContentBrowser_CatalogVersion.xml
2. cockpitextension/resources/cockpitextension/cscockpit/cockpitgroup/listViewContentBrowser_CatalogVersion.xml
3. cockpitextension/resources/cockpitextensionadmin/cscockpit/cockpitgroup/listViewContentBrowser.xml
4. cockpitextension/resources/cockpitextension-config/cscockpit/cockpitgroup/listViewContentBrowser_CatalogVersion.xml
Which methods are valid to create and save a new product item from the service layer ?
1.
1 ModelService modelService = spring . getBean(”modelService”) ;
2 ProductModel prd = new ProductModel() ;
3 // F I l l the product object with valid data
4 modelService . save (prd) ;=1
2.
1 ModelService modelService = spring . getBean(”modelService”) ;
2 ProductModel prd = modelService . create (”Product”) ;
3 // F I l l the product object with valid data
4 modelService . save (prd) ;=1
3.
1 ModelService modelService = spring . getBean(”modelService”) ;
2 ProductService productService = spring . getBean(”productService”) ;
3 //Assuming we load a valid product
4 ProductModel prdTemplate = productService . getProductForCode(”000001”)
5 ProductModel prd = modelService . clone (prdTemplate)
6 //Set a l l unique data
7 modelService . save (prd) ;=1
What is the correct deinition of the ant target updatesystem ?
1.type system definitions are modified to match the new type system definition in the items.xml files, the update mechanism makes sure that all data that existed in the system before the update is still accessible after the update
2.type system definitions are recreated to match the new type system definition in the items.xml files, the update mechanism makes sure that all data that existed in the system before the update is still accessible after the update
3.type system definitions are modified to match the new type system definition in the items.xml files, the update mechanism makes sure that all data that existed in the system are replaced by new data
4.type system definitions are modified to match the new type system definition in the spring-items.xml files,the update mechanism makes sure that all data that existed in the system before the update is still accessible after the update
How many currency items would be inserted from the following impex query, assuming they don’t exist in SAP Hybris yet ?
1 INSERT_UPDATE Currency ; isocode [ unique=true ] ; conversion ; d I g I t s ; symbol
2 ;DKK; 1 ; 2 ;DKK
3
4 INSERT Currency ; isocode [ unique=true ] ; conversion ; d I g I t s ; symbol
5 ;DKK; 7 ; 2 ;DKK
6
7 INSERT_UPDATE Currency ; isocode [ unique=true ] ; conversion ; d I g I t s
8 ;VND; 7 ; 2 ;VND
1. none
2. one
3. two
4. three
Which of the following application contexts are valid ?
1. Tenant service application context
2. Tenant core application context=1
3. Global web application context
4. Hac web application context=1
Is this a valid item type definition ?
1
2 Job to deactivate out−dated products
3
What SQL query could be generated from the following flexible search query ?
1 s e l e c t {pk} from {Product as prd}
1. SELECT prd.PK FROM products prd WHERE (prd.TypePkString IN (?,?))
2. SELECT item_t0.PK FROM products item_t0 WHERE (item_t0.TypePkString IN (?,?))
3. SELECT PK FROM products WHERE (TypePkString IN (?,?))
4. SELECT item_t0.PK FROM {products} item_t0 WHERE (item_t0.TypePkString IN (?,?))
Which of the following item type attribute default value definition valid
1. java.lang.Boolean.FALSE
2. enumerationService().getEnumerationValue(“validEnumeration”, “validValue”)
3. Boolean.FALSE
4. com.hybhub.core.ExistingClass.EXISTING_STATIC_STRING
The SAP Hybris out of the box model service is used to ?
1. Refresh the status of a data object
2. Lock a model object
3. Remove a model object
4. Create new item type definition
What statements about the backoffice application orchestrator are wrong ?
1. it’s already visible when you are logged as an admin
2. You use it to create and modify backoffice application
3. You use it to import new data
4. You need to press F4 to activate it
What is cached by SAP Hybris ?
1. Result of flexible search queries
2. Media images
3. Item attributes
4. User sessions
Choose the correct definition of an interface based architecture ?
1. Defines an application as a collection of components, in which API calls between components are made through abstract interfaces, not concrete classes
2. Defines an application as a collection of components, in which API calls between components are made through concrete classes, not abstract interfaces
3. Defines an application as a collection of static components, in which API calls between components are made static references
4. Defines an application as a collection of RESTFUL API entry points, calls between components are made through HTTP requests
What steps are required in order to create a new SAP Hybris cron job ?
1. Create a new trigger for the job
2. Create a job implementation of JobPerformable
3. Update your system
4. Create a new item that extends cronjob
How do you declare an attribute dynamic ?
1.
2.
3.
4.
How is Spring configured in SAP Hybris ?
1. Explicit configuration in XML
2. Explicit configuration in Java
3. Implicit bean discovery and automatic wiring
4. Explicit configuration in XML, implicit bean discovery and automatic wiring
How could you enable single product catalog synchronization from the PCM ?
1. Catalog synchronization cannot be done from the PCM, it’s meant to be done by administrators only
2. Configure expressUpdateCatalogVersions
3. Each product can be synchronized individually out of the box
4. PCM is not for products
What is the default authorization framework for the OCC web services ?
1. spring-security
2. oauth 2.0
3. java-security
4. sso
In order to test a dao implementation what test should you write ?
1. @UnitTest
2. @DatabaseTest
3. @SqlTest
4. @IntegrationTest
How can you use environment variables in your Hybris configuration ?
1. From a call back scripts
2. Using hybhub.config=$NAME assuming the env variable exists and is named NAME
3. Using hybhub.config= assuming the env variable exists and is name y_hybhub_config=1
4. Using hybhub.conig=? Assuming the env variable exists and is name hybhub_config
What statements are correct about the following impex ?
1 INSERT_UPDATE MediaFolder ; q u a l I f I e r [ unique=true ] ; path [ unique=true ]
2 ; images ; images
3 ; email−body ; email−body
4 ; email−attachments ; email−attachments
1. Only creates new MediaFolder
2. Generates a unique database index from the qualifier and the path
3. contains 3 value lines
4. doesn’t use any macro
Which one of the following flexible correct is valid ?
1. select {name[de]} from {product}
2. select {name.de} from {product}
3. select {name}[de] from {product}
4. select {name} from {product},{lang} where {lang}
Choose the right definition for a payment capture ?
1. Authorize an amount of money after it has been reserved
2. Transfer money back for a given order
3. Transfer money from after it has been authorized
4. Lock an amount of money on the card’s holder account
Using the out of the box impex import convention, what files would be imported during the update process (only create essential data checked) ?
1. extension/resources/impex/0_essentialdata.impex
2. extension/resources/impex/essentialdata_0.impex
3. extension/resources/impex/core/essentialdata_0.impex
4. extension/resources/impex/projectdata_users.impex
€�A navigation technique for accessing a collection of available information by narrowing down long lists of objects to a manageable size. The reduction is achieved through attribute filters that can by applied in flexible combinations of any order.” best describes ?
1. Facet search
2. solr
3. Category search
4. Flexible search
How many catalog versions can be attached to a catalog ?
1. zero, a catalog defines its own version
2. one, the version can be shared across diferent catalogs, for example Online
3. two, catalogs have their own Staged and Online catalog versions
4. As many as needed, there are no limits at how many versions a catalog can have
How many transactions would be created by the following Groovy script ?
1 def transaction = de . hybris . platform . tx . Transaction . current ()
2
3 transaction . begin ()
4
5 transaction . begin ()
6 //Do something
7 transaction . commit()
8
9 transaction . begin ()
10 //Do something
11 transaction . commit()
12
13 transaction . commit()
?
1. Code execution will fail
2. One transaction would be created
3. Two transactions would be created
4. Three transaction would be created
What is the main entry servlet of Spring MVC application ?
1. SpringMvcServlet
2. DispatcherServlet
3. JaloServlet
4. RequestContextServlet
What statements are true about CMSItem and CMSRelation item types ?
1. Their sub items are catalog version aware
2. it’s used by all tag components
3. every CMS types extend one or the other
4. They are defined under the core extension
How can you configure a new checkout flow ?
1. From an impex query
2. From a java implementation of de.hybris.platform.acceleratorstorefrontcommons.checkout.CheckoutFLow
3. From a spring configuration
4. from JSP tag file
What application context is valid to create a new region cache for an item type ?
1. Core tenant
2. Master tenant
3. Core static
4. Global static=1
What assessments are correct about modules and extensions?
1. A module is a synonym of template
2. An extension is never used alone
3. A module includes a set of functionalities fulilled by one or more extensions
4. An extension holds source code and coniguration iles
What is a saved query ??
1. A query that has been cached by the service layer
2. A way of reusing a query from the lexible search service
3. A lexible search query saved inside the SavedQuery item type and reusable from the HMC
4. There is no such query
Why do you need to execute setantenv.sh or setantenv.bat before calling the build platform ?
1. To preload ant classes
2. To conigure your PLATFORM_HOME environment variable
3. If you already have ant installed you do need to call this script
4. TO conigure ant home and opts environment variable
Choose the correct deinition for the bean scope singleton
1. One shared instance, which will be returned by all calls to getBean with the given id
2. One shared instance per thread, which will be returned by all calls to getBean with the given id
3. Independent instance resulting from each call to getBean
4. One shared instance per tenant, which will be returned by all calls to getBean with the given id
What is the “batch=true” Impex header modiier ?
1. Creates an individual import context for each value line
2. Allows modifying more than one item for a combination of all unique attributes
3. Inserts line by batches, default batch size is 20
4. There is no such header modiier
What are the steps in order to create a backoice widget ?
1. Create a widget view
2. Create a widget model hook
3. Create a widget deinition
4. Execute ant widgetGen
What is correct definition of the LTU eviction strategy ?
1. The oldest element would be deleted first
2. The youngest element would be deleted first
3. The most unused element would be deleted first
4. This is not a valid eviction strategy
Which of the following statements are not true regarding the use of inheritance in SAP Hybris Item type definitions ?
1. All new item types must extend Object
2. All new item types must be declared within the Core extension
3. You can extend another item type only if it has been deined within the same extension
4. Item types are not compatible with inheritance
Which one of the following design patterns has this as its primary goal ; Provides a single, simplified interface to a complex system of mutually dependent interacting objects ?
1. Strategy
2. Model View Controller
3. Service Layer
4. Facade
If you are performing a flexible search query as the user admin* which of the following is true ?*
1. All restrictions on the search are ignored
2. You cannot perform a lexible search being admin
3. You will only see in the result for the admin catalog
4. At least one restriction must be conigured or no search will be performed
When executing an Impex import, which of the following is true ?
1. You can only import one item type per Impex file
2. Each line under header is a potential value line
3. You need to specify the location of the CSV value lines file
4. If you don’t specify a header the Impex framework will find a matching item type
OAUTH2 is
1. A library built by SAP Hybris to handle authentication
2. A library built by Spring to handle authentication
3. An application protocol like HTTP but for authorization
4. An authorization protocol
To load a localized resource bundle, what service should you use ?
1. L10NService
2. I18NService
3. CommonI18NService
4. CommerceCommonI18NService
How can you activate the cluster mode ?
1. Cluster mode is on by default
2. Cluster mode is always on
3. Configure clustermode
4. Configure clustering
What are the logging framework shipped with Hybris ?
1. LOG4J
2. LOG4J2
3. LOG4J3
4. SLF4J
What happen when you run the following Impex script when the currency doesn’t exist yet ?
A UPDATE Currency ; isocode [ unique=true ] ; conversion ; d I g I t s ; symbol
B ;GBP; 1 ; 2 ;£
1. The import fails, log an error and move on to the next file
2. The import logs a warning and continue to resolve the remaining value lines
3. The import logs a warning, creates a temporary file, and try to import it later on
4. The import ignores non matching value lines when doing only UPDATE
Why is it considered bad practice to call directly CartService.getSessionCart().getEntries().isEmpty() to test if a customer already has a cart ?
1. This will create a cart if none is yet existing and the cart creation is expensive
2. The customerCartService wrapper is preferred to the raw cart service
3. getSessionCart() is deprecated, use getInMemoryCart() instead
4. getEntries() could be null
What is the correct definition of the Spring MVC dispatcher servlet ?
1. Receives incoming API requests and dispatch them to the right extension
2. Process all incoming requests made to the root path
3. Servlet responsible to find a matching controller and view to generate a response
4. Servlet responsible to load data from the database, load the JSP view and delegate the request handling to a matching controller
What template do you use do create a new cockpit ?
1. ycockpit
2. cockpit
3. ybackoice
4. backoice
Which of the following cockpit import by convention files have a correct path and name ?
1. cockpitextension/resources/cockpitextensionadmin/cscockpit/all/listViewContentBrowser_CatalogVersion.xml
2. cockpitextension/resources/cockpitextension/cscockpit/cockpitgroup/listViewContentBrowser_CatalogVersion.xml
3. cockpitextension/resources/cockpitextensionadmin/cscockpit/cockpitgroup/listViewContentBrowser.xml
4. cockpitextension/resources/cockpitextension-config/cscockpit/cockpitgroup/listViewContentBrowser_CatalogVersion.xml
Which methods are valid to create and save a new product item from the service layer ?
1.
1 ModelService modelService = spring . getBean(”modelService”) ;
2 ProductModel prd = new ProductModel() ;
3 // F I l l the product object with valid data
4 modelService . save (prd) ;=1
2.
1 ModelService modelService = spring . getBean(”modelService”) ;
2 ProductModel prd = modelService . create (”Product”) ;
3 // F I l l the product object with valid data
4 modelService . save (prd) ;=1
3.
1 ModelService modelService = spring . getBean(”modelService”) ;
2 ProductService productService = spring . getBean(”productService”) ;
3 //Assuming we load a valid product
4 ProductModel prdTemplate = productService . getProductForCode(”000001”)
5 ProductModel prd = modelService . clone (prdTemplate)
6 //Set a l l unique data
7 modelService . save (prd) ;=1
What is the correct deinition of the ant target updatesystem ?
1.type system definitions are modified to match the new type system definition in the items.xml files, the update mechanism makes sure that all data that existed in the system before the update is still accessible after the update
2.type system definitions are recreated to match the new type system definition in the items.xml files, the update mechanism makes sure that all data that existed in the system before the update is still accessible after the update
3.type system definitions are modified to match the new type system definition in the items.xml files, the update mechanism makes sure that all data that existed in the system are replaced by new data
4.type system definitions are modified to match the new type system definition in the spring-items.xml files,the update mechanism makes sure that all data that existed in the system before the update is still accessible after the update
How many currency items would be inserted from the following impex query, assuming they don’t exist in SAP Hybris yet ?
1 INSERT_UPDATE Currency ; isocode [ unique=true ] ; conversion ; d I g I t s ; symbol
2 ;DKK; 1 ; 2 ;DKK
3
4 INSERT Currency ; isocode [ unique=true ] ; conversion ; d I g I t s ; symbol
5 ;DKK; 7 ; 2 ;DKK
6
7 INSERT_UPDATE Currency ; isocode [ unique=true ] ; conversion ; d I g I t s
8 ;VND; 7 ; 2 ;VND
1. none
2. one
3. two
4. three
Which of the following application contexts are valid ?
1. Tenant service application context
2. Tenant core application context=1
3. Global web application context
4. Hac web application context=1
Is this a valid item type definition ?
1
2 Job to deactivate out−dated products
3
What SQL query could be generated from the following flexible search query ?
1 s e l e c t {pk} from {Product as prd}
1. SELECT prd.PK FROM products prd WHERE (prd.TypePkString IN (?,?))
2. SELECT item_t0.PK FROM products item_t0 WHERE (item_t0.TypePkString IN (?,?))
3. SELECT PK FROM products WHERE (TypePkString IN (?,?))
4. SELECT item_t0.PK FROM {products} item_t0 WHERE (item_t0.TypePkString IN (?,?))
Which of the following item type attribute default value definition valid
1. java.lang.Boolean.FALSE
2. enumerationService().getEnumerationValue(“validEnumeration”, “validValue”)
3. Boolean.FALSE
4. com.hybhub.core.ExistingClass.EXISTING_STATIC_STRING
The SAP Hybris out of the box model service is used to ?
1. Refresh the status of a data object
2. Lock a model object
3. Remove a model object
4. Create new item type definition
What statements about the backoffice application orchestrator are wrong ?
1. it’s already visible when you are logged as an admin
2. You use it to create and modify backoffice application
3. You use it to import new data
4. You need to press F4 to activate it
What is cached by SAP Hybris ?
1. Result of flexible search queries
2. Media images
3. Item attributes
4. User sessions
Choose the correct definition of an interface based architecture ?
1. Defines an application as a collection of components, in which API calls between components are made through abstract interfaces, not concrete classes
2. Defines an application as a collection of components, in which API calls between components are made through concrete classes, not abstract interfaces
3. Defines an application as a collection of static components, in which API calls between components are made static references
4. Defines an application as a collection of RESTFUL API entry points, calls between components are made through HTTP requests
What steps are required in order to create a new SAP Hybris cron job ?
1. Create a new trigger for the job
2. Create a job implementation of JobPerformable
3. Update your system
4. Create a new item that extends cronjob
How do you declare an attribute dynamic ?
1.
2.
3.
4.
How is Spring configured in SAP Hybris ?
1. Explicit configuration in XML
2. Explicit configuration in Java
3. Implicit bean discovery and automatic wiring
4. Explicit configuration in XML, implicit bean discovery and automatic wiring
How could you enable single product catalog synchronization from the PCM ?
1. Catalog synchronization cannot be done from the PCM, it’s meant to be done by administrators only
2. Configure expressUpdateCatalogVersions
3. Each product can be synchronized individually out of the box
4. PCM is not for products
What is the default authorization framework for the OCC web services ?
1. spring-security
2. oauth 2.0
3. java-security
4. sso
In order to test a dao implementation what test should you write ?
1. @UnitTest
2. @DatabaseTest
3. @SqlTest
4. @IntegrationTest
How can you use environment variables in your Hybris configuration ?
1. From a call back scripts
2. Using hybhub.config=$NAME assuming the env variable exists and is named NAME
3. Using hybhub.config= assuming the env variable exists and is name y_hybhub_config=1
4. Using hybhub.conig=? Assuming the env variable exists and is name hybhub_config
What statements are correct about the following impex ?
1 INSERT_UPDATE MediaFolder ; q u a l I f I e r [ unique=true ] ; path [ unique=true ]
2 ; images ; images
3 ; email−body ; email−body
4 ; email−attachments ; email−attachments
1. Only creates new MediaFolder
2. Generates a unique database index from the qualifier and the path
3. contains 3 value lines
4. doesn’t use any macro
Which one of the following flexible correct is valid ?
1. select {name[de]} from {product}
2. select {name.de} from {product}
3. select {name}[de] from {product}
4. select {name} from {product},{lang} where {lang}
Choose the right definition for a payment capture ?
1. Authorize an amount of money after it has been reserved
2. Transfer money back for a given order
3. Transfer money from after it has been authorized
4. Lock an amount of money on the card’s holder account
Using the out of the box impex import convention, what files would be imported during the update process (only create essential data checked) ?
1. extension/resources/impex/0_essentialdata.impex
2. extension/resources/impex/essentialdata_0.impex
3. extension/resources/impex/core/essentialdata_0.impex
4. extension/resources/impex/projectdata_users.impex
€�A navigation technique for accessing a collection of available information by narrowing down long lists of objects to a manageable size. The reduction is achieved through attribute filters that can by applied in flexible combinations of any order.” best describes ?
1. Facet search
2. solr
3. Category search
4. Flexible search
How many catalog versions can be attached to a catalog ?
1. zero, a catalog defines its own version
2. one, the version can be shared across diferent catalogs, for example Online
3. two, catalogs have their own Staged and Online catalog versions
4. As many as needed, there are no limits at how many versions a catalog can have
How many transactions would be created by the following Groovy script ?
1 def transaction = de . hybris . platform . tx . Transaction . current ()
2
3 transaction . begin ()
4
5 transaction . begin ()
6 //Do something
7 transaction . commit()
8
9 transaction . begin ()
10 //Do something
11 transaction . commit()
12
13 transaction . commit()
?
1. Code execution will fail
2. One transaction would be created
3. Two transactions would be created
4. Three transaction would be created
What is the main entry servlet of Spring MVC application ?
1. SpringMvcServlet
2. DispatcherServlet
3. JaloServlet
4. RequestContextServlet
What statements are true about CMSItem and CMSRelation item types ?
1. Their sub items are catalog version aware
2. it’s used by all tag components
3. every CMS types extend one or the other
4. They are defined under the core extension
How can you configure a new checkout flow ?
1. From an impex query
2. From a java implementation of de.hybris.platform.acceleratorstorefrontcommons.checkout.CheckoutFLow
3. From a spring configuration
4. from JSP tag file
What application context is valid to create a new region cache for an item type ?
1. Core tenant
2. Master tenant
3. Core static
4. Global static=1
{"name":"Fdsafdsaasfafsda", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"aaaaaa, What happen when you run the following Impex script when the currency doesn’t exist yet ?, -a UPDATE Currency ; isocode [ unique=true ] ; conversion ; d i g i t s ; symbol","img":"https://www.quiz-maker.com/3012/images/ogquiz.png"}
Powered by: Quiz Maker