Prepare these Adobe Experience Manager Interview Questions before attending any interview. These 30+ AEM interview questions will definitely help you to gain little more knowledge upon AEM training.
Abode AEM Interview Questions
Q1. AEM vs Sitecore
Features | AEM | Sitecore CMS |
Cost-Effective | High | High |
Complexity | High | High |
Features | Available | Available |
Integration | Easy to access | Easy to access |
CMS Support | Multiple User Access Supported | Multiple User Access Supported |
Security | High | High |
Customization | Moderate customizations | Highly customizable |
Single platform support | Yes | No |
User Experience | Good | Good |
Q2. What is the purpose of clientlibs?
It is used for adding site-specific js and CSS files to the page and also third party js and CSS files.
Q3. What is embed and difference between dependency and embed in the client library?
Embed: Used to embed code from other libraries. If node F embeds nodes G and H, the resulting HTML will be a concentration of content from nodes G and H.
Dependency: Please refer to the above answer.
Q4. Can you explain the life cycle of the OSGI bundle?
Following are the life cycle states of OSGI:
Installed: The bundle has been successfully installed.
Resolved: All Java classes that the bundle needs are available. This state indicates that the bundle is either ready to be started or has stopped.
Starting: The bundle is being started, the BundleActivator.start method will be called, and this method has not yet returned. When the bundle has an activation policy, the bundle will remain in the STARTING state until the bundle is activated according to its activation policy.
Active: The bundle has been successfully activated and is running; its Bundle Activator start method has been called and returned.
Stopping: The bundle is being stopped. The BundleActivator.stop method has been called but the stop method has not yet returned.
Uninstalled: The bundle has been uninstalled. It cannot move into another state.
Q5. What is the process step in the workflow?
It is a workflow component that can be found at this is used for calling a java class in the workflow.
Q6. Role of Dispatcher in CQ5?
The dispatcher is CQ5 caching and/or load balancing tool. The dispatcher also helps to protect your AEM server from attack. It caches responses from publish instance, to increase the responsiveness and security of your externally facing published website
Q7. What is the difference between par base and parsys?
par base: The par base allows components to inherit attributes from other components, similar to subclasses in object-oriented languages such as Java, C++, and so on. For example, when you open the /libs/foundation/components/text node in the CRX Explorer, you see that it has a property named sling:resourceSuperType, which references the par base component. The par base here defines tree scripts to render images, titles, and so on so that all components subclassed from this par base can use this script.
phrases (Paragraph System): The paragraph system (parsys) is a compound component that allows authors to add components of different types to a page and contains all other paragraph components. Each paragraph type is represented as a component. The paragraph system itself is also a component, which contains the other paragraph components.
Q8. How to customize page property dialog?
Step 1 – Copy /libs/foundation/components/page/dialog node to template component’s node
Step 2 – Modify dialog node
Q9. What is the difference between the live copy and language copy?
Live Copy – Copy created from an existing site or blueprint is called Live Copy. Rollout configurations for this Live Copy can be configured from tools console.
Language Copy – Site which is created using a language tool is called Language copy. Basically to create a site for different languages.
Q10. Explain DAM Renditions?
The DAM allows you to create renditions of an image that include different sizes and versions of the same asset. You can use those renditions in the content of your website, and that can be helpful when you need to create thumbnails or smaller views of large, high-resolution images. When you are creating multi-device websites where Internet bandwidth is a varying concern, this feature becomes even more important. After all, you want to minimize the size of any files a site visitor has to download to view your site. Making your site load faster improves your search engine optimization and the user experience.
Q11. What is the technology stack of cq5?
Cq5 uses the following technologies :
- JCR – Java specification for accessing a content repository JSR-283 specification JCR 2.0, cq5 uses its own implementation of JCR called CRX. Apache Jackrabbit is an open-source implementation of the jcr 2.0 specification.
- Apache Sling – RESTful framework to access a JCR over Http protocol. It maps the request URL to the node in JCR.
- OSGi(Apache Felix) – a framework for modular application development using java. Each module called bundle can be independently started and stopped.OSGi container provides implementation classes for the OSGi framework.
Q12. What is REST? What is a RESTful Framework?
REST stands for Representational State Transfer. REST-style architectures consist of clients and servers. Clients initiate requests to servers; servers process requests and return appropriate responses. Requests and responses are built around the transfer of representations of resources. A resource can be essentially any coherent and meaningful concept that may be addressed. A representation of a resource is typically a document that captures the current or intended state of a resource.
Q13. What is Replication in CQ5?
- Publish (activate) content from an author to publish the environment.
- Explicitly flush content from the dispatcher cache.
- Return user input from the publish environment to the author’s environment.
REPLICATION PROCESS:
- First, the author requests that certain content be published (activated).
- The request is passed to the appropriate default replication agent.
- Replication agent packages the content and places it in the replication queue.
- The content is lifted from the queue and transported to the publish environment using the configured protocol.
- A servlet in the publish environment receives the request and publishes the received content, the default servlet is
“HTTP://LOCALHOST:4502/BIN/RECEIVE.”
Q14. Difference between Dialog and Design Dialog?
Dialog is a key element of your component as they provide an interface for authors to configure and provide input to that component. The user input will be stored at the page level.
Design dialog will share the content at the template level. Also, we can dynamically change the content in design mode.
Q15. How bundles are loaded and installed in CQ5?
This is managed by the Sling Management Console of CQ5.
Q16. What is the contribution of the Servlet Engine in CQ5?
Servlet Engine pretends as a server within which each CQ (and CRX if used) instance runs. Even though you can run CQ WCM without an application server, always a Servlet Engine is needed.
Q17. State various strategies used by Dispatcher?
- Cache as much content as possible as static pages.
- Accessing the layout engine as little as possible.
Q18. How you can inherit the properties of one dialog to another dialog?
For inheriting properties we have to create two components with unique names in the base component dialog. For eg. If your plan is to have two rich text areas in the dialog of components that inherit from the base, then you must include two rich text areas with unique names in the base component dialog. In any case, every input field of a dialog must have a unique name, else they will point to the same property path relative to the JCR: content node of the component when used on a page.
Q19. Difference between OSGi bundle and Normal Jar file?
- OSGi bundles are jar files with metadata inside. Much of this metadata is in the jar’s manifest, found at META-INF/MANIFEST.MF. This metadata, when read by an OSGi runtime container, is what gives the bundle its power.
- With OSGi, just because a class is public doesn’t mean you can get to it. All bundles include an export list of package names, and if a package isn’t in the export list, it doesn’t exist to the outside world. This allows developers to build an extensive internal class hierarchy and minimize the surface area of the bundle’s API without abusing the notion of package-private visibility. A common pattern, for instance, is to put interfaces in one package and implementations in another and only export the interface package.
- All OSGi bundles are given a version number, so it’s possible for an application to simultaneously access different versions of the same bundle (eg: JUnit 3.8.1 and JUnit 4.0.). Since each bundle has its own classloader, both bundles classes can coexist in the same JVM.
- OSGi bundles declare which other bundles they depend upon. This allows them to ensure that any dependencies are met before the bundle is resolved. Only resolved bundles can be activated. Because bundles have versions, versioning can be included in the dependency specification, so one bundle can depend on version JUnit version 3.8.1 and another bundle depends on JUnit version 4.0.
- In the OSGi bundle, there will be an Activator.java class in OSGi which is an optional listener class to be notified of bundle start and stop events.
Q20. Difference between Design Dialog and Edit Dialog.
Both dialog and design dialog defines the UI interface for allowing the user to configure the component.
Design Dialog of a component can be seen/edited in the design mode of the page. Design dialog is at template level so all the page of the template will share the same design dialog and it is stored under /etc/designs folder.
Whereas Dialog of a component is at page level so each component instance will have its own dialog and information entered in the dialog will be stored under /content folder.
Q21. What is Dependency /ies in the client library?
It is a list of other client library categories on which this library folder depends. For example, given two cq: ClientLibraryFolder nodes F and G, if a file in F requires another file in G in order to function properly, then at least one of the categories of G should be among the dependencies of F.
Q22. Difference between package and bundle?
Package: A Package is a zip file that contains the content in the form of a file-system serialization (called “vault” serialization) that displays the content from the repository as an easy-to-use-and-edit representation of files and folders. Packages can include content and project-related data.
Bundle: Bundle is a tightly coupled, dynamically loadable collection of classes, jars, and configuration files that explicitly declare their external dependencies (if any).
Q23. What is the difference between parsys and iparsys?
parsys: It is called the “Paragraph System” component in which you can add other components at the page level.
iparsys: It is an inherited paragraph system, which inherits parent page “paragraph system”.
Q24. Difference between CQ5.4 and CQ5.5?
Versions of CQ before 5.5 were based on a servlet container (CQSE, by default, though others could be used) running with multiple web apps: One for the CRX content repository and one for the OSGi container which itself contained Sling and AEM. The Sling web app was bound to the root and handled most of the request processing.
With CQ 5.5 and AEM, the OSGi container is positioned at the root and the OSGi HTTP service, backed by Sling acting as the sole request handling endpoint. The CRX content repository is now just another OSGi service, alongside the various services that comprise the rest of the AEM functionality. These changes do not affect applications built on top of AEM or Sling.
Q25. What is Replication? and What are the steps involved in Replication?
Replication is the process of activating/publishing the page from Author Instance to Process Instance.
Steps involved in replication:The author requests that certain content be published (activated); this can be initiated by a manual request, or by automatic triggers that have been preconfigured.
The request is passed to the appropriate default replication agent; an environment can have several default agents which will always be selected for such actions.
The replication agent “packages” the content and places it in the replication queue.
The content is lifted from the queue and transported to the publish environment using the configured protocol; usually, this is HTTP.
A servlet in the publish environment receives the request and publishes the received content; the default servlet is https://localhost:4503/bin/receive.
Q26. Explain the Multi-Site Manager?
Multi-Site Manager (MSM) enables you to easily manage multiple web sites that share common content. MSM lets you define relations between the sites so that content changes in one site are automatically replicated in other sites.
For example, web sites are often provided in multiple languages for international audiences. When the number of sites in the same language is low (three to five), a manual process for synchronizing content across sites is possible. However, as soon as the number of sites grows or when multiple languages are involved, it becomes more efficient to automate the process.
Q27. Role of Persistence Manager in CQ5?
The persistence manager saves the repository content to a permanent storage solution, such as the file system or a database. By default, CRX saves repository content to the Tar persistence manager. Following DB’s can be used for storing content – DB2, Oracle, SQL Server, MySQL.
Q28. What is a content repository? What is JCR?
A Content repository is basically a place where digital content is stored. Generally, the structure of the content repository is hierarchical and represented as a tree structure where each node of the tree is used to store content.
Java Content Repository is a specification provided by the Java community to access the content repository in a uniform way (platform-independent and vendor-independent way). The specification was initially released as JSR-170(JCR 1.0) and then later revised version 2 as (JCR-283).The javax.JCR API provides the various classes and interfaces to access a content repository.
Q29. What is the role of Dispatcher in CQ5?
A dispatcher is a CQ5 tool for caching and load-balancing. It has 2 responsibilities.
- Caching – To cache as much content as possible, so that it doesn’t need to access layout engine frequently for generating content dynamically.
- Load-balancing – To increase the performance by load-balancing.
Q30. What is the component?
A component is determined as reusable modules that are responsible for implementing certain logic to render the website content.
So, these are the top 30+ AEM interview Questions, prepare it for your next interview. Also, if you want to learn AEM Course online, then feel free to call us back. Also, get a demo session, completely free.