An instance has custom logging enabled. The log reaches the file size limit.
What happens in this situation?
A.
The log file is deleted and a new log file is created.
B.
Logging is suspended for the day
C.
The current log file is archived and a new log file is created.
D.
The log file Rolls over and the oldest log messages are overwritten
Logging is suspended for the day
Which line of code creates a content slot that can be included on homepage.isml to display on the home page?
A.
<isslot id="my_banner " description="for home page" type="global" context="content"
context-object="${pdict.ContentSearchResult.content}"/>
B.
<isslot id="my_banner " description="for home page" type="global" context="homepage"/>
C.
<isslot id="my_banner " description="for home page" context="global">
D.
<isslot id="my_banner " description="for home page" context="global"
context-object="${pdict.CurrentHomePage}"/>
<isslot id="my_banner " description="for home page" context="global">
A Digital Developer creates a B2C Commerce server connection in their UX Studio workspace. The
Developer adds new cartridges to the workspace, but the cartridges do NOT execute as the Developer expects.
Which three things should the Digital Developer verify to ensure the cartridges are uploaded? (Choose three.)
A.
The Auto-Upload setting is enabled for the server connection.
B.
The Active Server setting is enabled for the server connection.
C.
The credentials for the server connection are correctly entered.
D.
The cartridge is for the current version of B2C Commerce.
E.
The server is configured to accept incoming connections.
The Auto-Upload setting is enabled for the server connection.
The cartridge is for the current version of B2C Commerce.
The server is configured to accept incoming connections.
Which two methods are efficient and scalable? (Choose two.)
A.
ProductMgr.queryAllSiteProducts()
B.
ProductSearchHit.getRepresentedProducts()
C.
ProductSearchModel.getProductSearchHits()
D.
Category.getProducts()
ProductSearchModel.getProductSearchHits()
Category.getProducts()
Given the following snippet:
• Server.append( ‘Show’ , function (req, res, next) )
According to SFRA, which two options shows a correct way to complete the code above in order to provide
data to the response using a controller?
Choose 2 answers
A.
res.viewData = {
data: myDataObject
};
res.render(‘/content/myPage’);
next();
});
B.
res.setViewData ({
data: myDataObject
});
res.render(‘/content/myPage’);
next();
});
C.
res.render(‘/content/myPage’,{
data: myDataObject
});
next();
});
D.
res.render(‘/content/myPage’);
next();
}).append{(
Data:myDataObject
});
res.render(‘/content/myPage’,{
data: myDataObject
});
next();
});
Page 16 out of 45 Pages |
Previous |