Salesforce-Certified-B2C-Commerce-Developer test Format | Course Contents | Course Outline | test Syllabus | test Objectives
The Salesforce B2C Commerce Developer test measures a candidate’s knowledge and skills related to the following objectives. A candidate should have hands-on experience with B2C Commerce and should be able to demonstrate knowledge and expertise in each of the areas below.
B2C Commerce Setup: 11%
Given a sandbox environment, configure an IDE to use WebDAV to deploy cartridges to the correct version directories.
Given a sandbox instance and data import files, import files using the Business Manager Import/Export modules.
Given the code for a storefront site, add the correct sequence of cartridge names to the provided cartridge path.
Given a sandbox environment, use the Business Manager to add a new site to the instance, configuring the default currency and taxation type according to business requirements.
Given a recently created B2C site, assign the storefront data configurations according to business requirements.
Work With a B2C Site: 12%
Given a Business Manager task, work with the product data model to manage products and product search model, their categorization, and associated inventory and pricebooks.
Given a configuration for tasks, such as payment and shipping information, use Business Manager to complete storefront orders.
Given a configuration task, use Business Manager to work with Content Assets, Page Designer, Content Slots, and Content Folders.
Data Management Using Business Manager Usage: 24%
Given a business requirement, modify site search preferences and settings to enable searching for a specified term or product attribute.
Given a business requirement, create and configure a new search refinement and sorting definition that can be used on the storefront.
Given a debugging requirement or code, configure the logging categories and access the logs in Business Manager.
Given business requirements, extend the storefront to expose a new attribute on an existing system object type.
Given a business need to store custom data, determine if a custom object is needed and create and configure as required.
Given a performance issue and data, use relevant tools to inspect code performance and determine and implement solutions (cache configuration, profilers, etc) to Strengthen performance.
Given a specification and a sandbox instance, configure OCAPI permissions for Data and Shop APIs.
Given a service configuration, recognize how they are applicable to the development process.
Application Development: 53%
Given a development task, code ISML templates that use functionality such as: local include, remote include, components, and other ISML tags.
Use debugging best practices and techniques to troubleshoot scripts and controllers and verify outcomes.
Given a requirement, create and extend the functionality of a JavaScript controller that leverages models, decorators, factories, or helpers following API best practices and renders a template or returns a JSON response.
Given a business requirement and design for a new marketing page, develop page types and components to allow a marketer to build a page with the Page Designer tool.
Given a requirement to accept, validate, and persist information from a storefront customer, modify the appearance of a form, add validation and CSRF protection, and use bindings to process fields.
Given localization requirements, implement and enhance templates, form definitions, static files, properties files, and persistent object attributes to ensure that pages are displayed in the expected language.
Given a logging task and existing configuration, write code that logs non-sensitive data to custom log files with different log levels.
Integrate, deploy, and use a service instance based on a given requirement.
Given a use case, extend functionality or capture an event using hook extension points.
Given code that violates documented best practices, identify the issues and modify the code to conform with best practices including performance and scalability.
Given a business requirement, use OCAPI Shop and Data APIs to enable interoperability with an external system.
Given a business requirement to perform a scheduled task, develop jobs and code job scripts.
100% Money Back Pass Guarantee

Salesforce-Certified-B2C-Commerce-Developer PDF sample MCQs
Salesforce-Certified-B2C-Commerce-Developer sample MCQs
Salesforce-Certified-B2C-Commerce-Developer Dumps Salesforce-Certified-B2C-Commerce-Developer Braindumps Salesforce-Certified-B2C-Commerce-Developer actual questions Salesforce-Certified-B2C-Commerce-Developer practice questions Salesforce-Certified-B2C-Commerce-Developer genuine Questions
Salesforce
Salesforce-Certified-B2C-Commerce-Developer
Certified B2C Commerce Developer
https://killexams.com/pass4sure/exam-detail/Salesforce-Certified-B2C-Commerce-Developer
Question: 57
A client has a requirement to render different content on the homepage based on if the customer is logged in or guest user.
What should a developer implement to achieve this requirement?
1. Write specific custom code in the Content Asset for a customer that is a registered, versus unregistered, user.
2. Set the Content Slot configuration so it is based on the system customer group registered, versus unregistered.
3. Set the Content Asset configuration for a customer that is a registered, versus unregistered, user.
4. Add specific custom messages in Page Designer for a customer that is a registered, versus unregistered, user.
Answer: B
Question: 58
A Digital Developer needs to add logging to the following code:
Which statement logs the HTTP status code to a debug-level custom log file?
1. logger.getLogger(profile).debug("Error retrieving profile email, Status Code: ", http.statusCode);
2. logger.debug("Error retrieving profile email, Status Code: {0} was returned.", http.statusCode);
3. Logger.getLogger().debug("Error retrieving profile email, Status Code: {0} was returned.", http.statusCode);
4. Logger.getLogger(profile).debug("Error retrieving profile email, Status Code: {0} was returned.", http.statusCode);
Answer: B
Question: 59
A developer has a sandbox with code to log a message during execution, and the following code:
After the code executes, the developer does not see any log file with the message in the WebDAV folder. What could the developer do to correct this issue?
1. Set the root log level to debug AND check the box for info under Log Files.
2. Set the logging global preference to true AND set the root log level to debug.
3. Set the logging global preference to true AND check the box for Info under Log Files
Answer: C
Question: 60
A developer has the following files in template/resources: account.proierties
weight.unit=kilos account_en.propierties weight.unit=stones account_en_US.propierties weight.unit= pounds
Using the default locale configuration, what is the current outcome of the page that renders the account.isml template snippet below when visiting the Sofrefront with the English for Canada(en_CA) locale=
Your parcel weighs 10 ${Resource.msg(weight.unit,account)}
1. Your parcel weighs 10 stones.
2. Your parcel weighs 10 pounds.
3. Your parcel weighs 10 undefined.
4. Your parcel weighs 10 kilos
Answer: A
Question: 61
Assume the code below is executing:
Active Log category is root with log level of info.
Given this information, what is the beginning of the filename in which the log will be written?
1. xyz
2. custominfo-blade
3. custom-export
4. custom-xyz
Answer: D
Question: 62
The developer has been given the following business requirement:
The shipping method, Free Standard Ground Shipping has an exclusion for products *lth category equals or is child of electronics-televisions.
The marketing department has scheduled a sale offering a Free Standard Ground Shipping method for brand XyzTv televisions for the next 3 months.
What method accomplishes this while following best practices?
1. Extend the code in cartridge/models/shipping/shippingMethod.js using module, super Module and add an exception for the specified brand.
2. Extend the CheckoutShippingservices controller using module.superModule and add an exception for the specified brand
3. Create an allow list for the existing shipping method by adding a product exclusion for brand equals XyzTV" to the exclusion list for "Free Standard Ground Shipping."
Answer: C
Question: 63
A developer needs to check for product inventory in all inventory lists using the Open Commerce API. An example request URL is:
Which properly should the developer check in the OCAPI settings to confirm the appropriate resource is enabled?
1. Client_id
2. Ecom-inventory
3. Inventory_list
Answer: B
To ensure SFRA best practices and protect against request forgery, the developer introduced CSRF token generation in the customer address form:
To implement CSRF protection when the form is submitted, the developer needs to introduce the CSRF validation using one or both of these methods as applicable:
validateRequest validateAjaxRequest
Where in the code does the developer need to add this CSRF validation check?
1. In the controller function that displays the form
2. In the middleware chain of the controller post route
3. In the controller function that handles the submitted form
4. In the model function that persists the form data
Answer: B
Question: 65
A Digital Developer must give users the ability to choose an occasion (holiday, birthday, anniversary, etc.) for which gifts are currently being selected. The data needs to be persistent throughout the current shopping experience.
Which data store variable is appropriate, assuming there is no need to store the selection in any system or custom objects?
1. Request scope variable
2. Page scope variable
3. Session scope variable
4. Content slot variable
Answer: C
Question: 66
A developer wants to configure multiple products that should only be sold as a group. It should not be possible for
buyers to buy these products individually.
How should the developer configure the products?
1. Bundle
2. Set
3. Variation Group
Answer: A
Question: 67
Business Manager has the configuration: Active Log category is "root"
Log level of WARN
The code below is executing:
var log = Logger.getLogger("products");
Using this information, which two logs will be written? Choose 2 answers
1. log.warn("This is a warn message");
2. log.error("This is an error message");
3. log.info("This is an info message");
4. log.debugfThis is a debug message");
Answer: A,C
Question: 68
A merchant has a content slot on a page that currently displays products based on the top Sellers for the current week. They wish to change this functionality and, instead, have the slot render a specific content asset so that the content
experience is more personalized to the visitors.
Which two actions are necessary to make this change? Choose 2 answers
1. Delete the existing content slot and create a new one.
2. Change the rendering template in the slot configuration
3. Change the default setting in the slot configuration
4. Change the content type for the slot configuration
Answer: B,D
Question: 69
Which two methods are efficient and scalable? (Choose two.)
1. ProductMgr.queryAllSiteProducts()
2. ProductSearchHit.getRepresentedProducts()
3. ProductSearchModel.getProductSearchHits()
4. Category.getProducts()
Answer: C,D
Question: 70
A controller route in the SFRA base looks as follows:
In order to extend this route using prepared ( ), what should the developer consider?
1. Specify any middleware functions needed for the new functionality.
2. Specify any middleware functions needed for the new functionality using only those called by the base route.
3. Remove next ( ); on the new route so only the routes middleware functions execute.
Answer: B
Killexams VCE Test Engine (Self Assessment Tool)
Killexams has introduced Online Test Engine (OTE) that supports iPhone, iPad, Android, Windows and Mac. Salesforce-Certified-B2C-Commerce-Developer Online Testing system will helps you to study and practice using any device. Our OTE provide all features to help you memorize and practice questions mock test while you are travelling or visiting somewhere. It is best to Practice Salesforce-Certified-B2C-Commerce-Developer MCQs so that you can answer all the questions asked in test center. Our Test Engine uses Questions and Answers from genuine Certified B2C Commerce Developer exam.
Online Test Engine maintains performance records, performance graphs, explanations and references (if provided). Automated test preparation makes much easy to cover complete pool of MCQs in fastest way possible. Salesforce-Certified-B2C-Commerce-Developer Test Engine is updated on daily basis.
Download Salesforce-Certified-B2C-Commerce-Developer free real questions with Exam Cram
IT experts at killexams.com have crafted a premier Salesforce Certification Practice Questions solution to streamline your path to success. Many students find the volume of questions in Certified B2C Commerce Developer TestPrep and MCQs overwhelming, often feeling drained by the process. Our specialists have meticulously developed a comprehensive Salesforce-Certified-B2C-Commerce-Developer Exam Cram Practice Test, ensuring all essential knowledge is covered through in-depth research and analysis. Designed with candidates in mind, our resources, including TestPrep practice tests, online
Latest 2025 Updated Salesforce-Certified-B2C-Commerce-Developer Real test Questions
At killexams.com, we offer the latest, valid, and 2025 up-to-date Salesforce Certified B2C Commerce Developer MCQs essential for passing the Salesforce-Certified-B2C-Commerce-Developer exam. Successfully completing this test is crucial for elevating your status as an expert in your field. Our mission is to assist individuals in passing the Salesforce-Certified-B2C-Commerce-Developer test on their first attempt. Our Salesforce-Certified-B2C-Commerce-Developer practice exam consistently ranks at the top, and our clients trust our study guide and VCE for authentic Salesforce-Certified-B2C-Commerce-Developer test questions. We ensure our Salesforce-Certified-B2C-Commerce-Developer study guide remains relevant and current, allowing you to achieve excellent grades. Passing the real Salesforce Salesforce-Certified-B2C-Commerce-Developer test is challenging with only Salesforce-Certified-B2C-Commerce-Developer textbooks or free exam dumps available online. Numerous scenarios and tricky questions can confuse candidates during the Salesforce-Certified-B2C-Commerce-Developer exam. At killexams.com, we gather genuine Salesforce-Certified-B2C-Commerce-Developer mock test and present them in the form of study guide and a VCE test simulator to enhance your preparation. You can obtain our 100% free Salesforce-Certified-B2C-Commerce-Developer exam dumps before registering for the full version of Salesforce-Certified-B2C-Commerce-Developer mock test. We are confident that you will be pleased with the quality of our practice questions. Do not forget to take advantage of our special discount coupons. Killexams.com provides the latest, valid, and 2025 up-to-date Salesforce Salesforce-Certified-B2C-Commerce-Developer practice exam, ideal for smoothly passing the Certified B2C Commerce Developer test. It is the best way to boost your status as a specialist in your field. We have built a solid reputation for helping individuals pass the Salesforce-Certified-B2C-Commerce-Developer test on their first attempt. Our practice exam has consistently ranked at the top for the past four years. Trust our Salesforce-Certified-B2C-Commerce-Developer study guide and VCE for authentic Salesforce-Certified-B2C-Commerce-Developer test questions. Killexams.com is the most reliable source for genuine Salesforce-Certified-B2C-Commerce-Developer test questions, and we continuously keep our Salesforce-Certified-B2C-Commerce-Developer practice exam valid and up-to-date.
Tags
Salesforce-Certified-B2C-Commerce-Developer Practice Questions, Salesforce-Certified-B2C-Commerce-Developer study guides, Salesforce-Certified-B2C-Commerce-Developer Questions and Answers, Salesforce-Certified-B2C-Commerce-Developer Free PDF, Salesforce-Certified-B2C-Commerce-Developer TestPrep, Pass4sure Salesforce-Certified-B2C-Commerce-Developer, Salesforce-Certified-B2C-Commerce-Developer Practice Test, obtain Salesforce-Certified-B2C-Commerce-Developer Practice Questions, Free Salesforce-Certified-B2C-Commerce-Developer pdf, Salesforce-Certified-B2C-Commerce-Developer Question Bank, Salesforce-Certified-B2C-Commerce-Developer Real Questions, Salesforce-Certified-B2C-Commerce-Developer Mock Test, Salesforce-Certified-B2C-Commerce-Developer Bootcamp, Salesforce-Certified-B2C-Commerce-Developer Download, Salesforce-Certified-B2C-Commerce-Developer VCE, Salesforce-Certified-B2C-Commerce-Developer Test Engine
Killexams Review | Reputation | Testimonials | Customer Feedback
Discovering killexams.com test questions materials online before my Salesforce-Certified-B2C-Commerce-Developer test was a fortunate find. Their concise coaching and accurate test simulator led to a strong score, and I am thankful for their cost-effective and reliable resources.
Lee [2025-4-27]
Thanks to Killexams.com, the Salesforce-Certified-B2C-Commerce-Developer test was smooth sailing for me. I passed with ease using their materials and highly recommend them to anyone looking to take this exam.
Martha nods [2025-4-21]
I was initially skeptical, but Killexams.com study materials helped me pass the Salesforce-Certified-B2C-Commerce-Developer test with an 80% score. My certification is proof of their effectiveness. Thank you, Killexams.com!
Martin Hoax [2025-4-18]
More Salesforce-Certified-B2C-Commerce-Developer testimonials...
Salesforce-Certified-B2C-Commerce-Developer Exam
Question: Does killexams inform about test update? Answer: Yes, you will receive an intimation on each update. You will be able to obtain up-to-date mock test to the Certified-B2C-Commerce-Developer exam. If there will be any update in the exam, it will be automatically copied in your obtain section and you will receive an intimation email. You can memorize and practice these mock test with the VCE test simulator. It will train you enough to get good marks in the exam. |
Question: Where am I able to get Certified-B2C-Commerce-Developer genuine test questions? Answer: Killexams.com is the best place to get Certified-B2C-Commerce-Developer genuine test questions. These Certified-B2C-Commerce-Developer questions work in the genuine test. You will pass your test with these Certified-B2C-Commerce-Developer test prep. If you give some time to study, you can prepare for an test with much boost in your knowledge. We recommend spending as much time as you can to study and practice Certified-B2C-Commerce-Developer practice questions until you are sure that you can answer all the questions that will be asked in the genuine Certified-B2C-Commerce-Developer exam. For this, you should visit killexams.com and register to obtain the complete examcollection of Certified-B2C-Commerce-Developer test test prep. These Certified-B2C-Commerce-Developer test questions are taken from genuine test sources, that's why these Certified-B2C-Commerce-Developer test questions are sufficient to read and pass the exam. Although you can use other sources also for improvement of knowledge like textbooks and other aid material these Certified-B2C-Commerce-Developer questions are sufficient to pass the exam. |
Question: Can I get the latest practice questions with actual questions & Answers of Certified-B2C-Commerce-Developer exam? Answer: Of course, You can get up-to-date and valid Certified-B2C-Commerce-Developer questions and answers. These are the latest and valid questions with real mock test that contain test prep. When you will memorize these questions, it will help you get Good Score in the exam. |
Question: How much time killexams support takes to respond? Answer: Usually, support keeps on responding to inquiries but due to a long list of emails, it takes up to 24 hours to respond to an email. It also depends on the query. Sometimes, the information required in the email takes time to investigate and deliver. Most emails are responded less than 6 hours. |
Question: Is killexams website test prep updated daily? Answer: It depends on the vendor that takes the test, like Cisco, IBM, HP, CompTIA, and all others. There is no set frequency in which Certified-B2C-Commerce-Developer test is changed. The vendor can change the Certified-B2C-Commerce-Developer test questions any time they like. But when test questions are changed, we update our PDF and VCE accordingly. Our team keeps on checking updates of the Certified-B2C-Commerce-Developer exam. When test questions are changed in real Certified-B2C-Commerce-Developer tests, we update our PDF and VCE accordingly. There is no set frequency in which Certified-B2C-Commerce-Developer test is changed. The vendor can change the Certified-B2C-Commerce-Developer test questions any time they like. |
References
Certified B2C Commerce Developer practice questions software
Certified B2C Commerce Developer Mock Exam
Certified B2C Commerce Developer Practice Questions
Certified B2C Commerce Developer MCQs
Certified B2C Commerce Developer genuine test
Certified B2C Commerce Developer Mock Exam
Certified B2C Commerce Developer braindumps
Certified B2C Commerce Developer Mock Exam
Frequently Asked Questions about Killexams Practice Tests
Is killexams authentic website?
Yes, Killexams is a legit and authentic website that provides a complete examcollection of exams. You need the latest questions that follow the new syllabus to pass the exam. These latest mock test are taken from the genuine test question bank, that\'s why these test questions are sufficient to read and pass the exam. Although you can use other sources also for improvement of knowledge like textbooks and other aid material these practice questions are sufficient to pass the exam.
Does killexams ensures my success in Salesforce-Certified-B2C-Commerce-Developer exam?
Of course, killexams ensures your success with up-to-date Salesforce-Certified-B2C-Commerce-Developer mock test and the best test simulator for practice. If you memorize all the mock test provided by killexams, you will surely pass your exam.
Are these questions/answers of Salesforce-Certified-B2C-Commerce-Developer legal?
As far as legality is concerned, it is your right to use any book or questions to Strengthen your knowledge. These Salesforce-Certified-B2C-Commerce-Developer mock test are to the point knowledge source about the test topics.
Is Killexams.com Legit?
Indeed, Killexams is totally legit along with fully well-performing. There are several capabilities that makes killexams.com real and genuine. It provides up to date and totally valid test dumps that contain real exams questions and answers. Price is really low as compared to almost all of the services on internet. The mock test are current on common basis through most exact brain dumps. Killexams account set up and item delivery is extremely fast. File downloading will be unlimited as well as fast. Help is available via Livechat and E mail. These are the features that makes killexams.com a robust website that give test dumps with real exams questions.
Other Sources
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Questions and Answers
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Question Bank
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test dumps
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test Braindumps
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer course outline
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test success
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test prep
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer information source
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test Braindumps
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer PDF Questions
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer study help
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer guide
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer exam
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer answers
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test dumps
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Study Guide
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer braindumps
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test dumps
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer guide
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test success
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer book
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer guide
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer braindumps
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test format
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer guide
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer study help
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test contents
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer book
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test format
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer learning
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test Cram
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer outline
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Free test PDF
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Latest Questions
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer boot camp
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Practice Questions
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Free test PDF
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Real test Questions
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer cheat sheet
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Practice Test
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer test prep
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer braindumps
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer Real test Questions
Salesforce-Certified-B2C-Commerce-Developer - Certified B2C Commerce Developer questions
Which is the best testprep site of 2025?
Prepare smarter and pass your exams on the first attempt with Killexams.com – the trusted source for authentic test questions and answers. We provide updated and Tested practice questions questions, study guides, and PDF test dumps that match the genuine test format. Unlike many other websites that resell outdated material, Killexams.com ensures daily updates and accurate content written and reviewed by certified experts.
Download real test questions in PDF format instantly and start preparing right away. With our Premium Membership, you get secure login access delivered to your email within minutes, giving you unlimited downloads of the latest questions and answers. For a real exam-like experience, practice with our VCE test Simulator, track your progress, and build 100% test readiness.
Join thousands of successful candidates who trust Killexams.com for reliable test preparation. Sign up today, access updated materials, and boost your chances of passing your test on the first try!
Important Links for best testprep material
Below are some important links for test taking candidates
Medical Exams
Financial Exams
Language Exams
Entrance Tests
Healthcare Exams
Quality Assurance Exams
Project Management Exams
Teacher Qualification Exams
Banking Exams
Request an Exam
Search Any Exam