Find Interview Questions for Top Companies
Cloudcraze commerce on salesforce Interview Questions and Answers
Ques:- What are outputs of project closure?
Right Answer:
The outputs of project closure include:

1. Final project report
2. Lessons learned documentation
3. Formal acceptance of deliverables
4. Release of project resources
5. Closure of contracts
6. Updated project documentation
7. Stakeholder feedback and evaluation
Ques:- How do project scheduling help achieve project execution?
Right Answer:
Project scheduling helps achieve project execution by organizing tasks, allocating resources, setting deadlines, and establishing a timeline, which ensures that the project stays on track, meets deadlines, and efficiently utilizes resources.
Ques:- Before going to strat the Project what are the things we have to consider?
Right Answer:
1. Define project objectives and goals.
2. Identify stakeholders and their needs.
3. Assess project feasibility and risks.
4. Establish a project scope and deliverables.
5. Create a project timeline and milestones.
6. Determine budget and resources required.
7. Formulate a communication plan.
8. Assemble the project team and assign roles.
Ques:- What is MPMM?
Right Answer:
MPMM stands for "Multi-Project Management Methodology," which is a framework designed to manage multiple projects simultaneously, ensuring that resources are allocated efficiently and project goals are aligned with organizational objectives.
Ques:- How can I create Many to Many relationship?
Right Answer:
To create a Many-to-Many relationship in Salesforce, you need to use a junction object. Create a new custom object that links the two objects you want to relate. Then, create two Master-Detail relationships on the junction object, each pointing to one of the objects you want to connect.
Comments
Admin Feb 8, 2020

Lookup and Master detail relationships are one to many relationships. We can create many to Many relationship by using junction object. Junction object is a custom object with two master detail relationships.

Ques:- What is App in Salesforce?
Right Answer:
An App in Salesforce is a collection of tabs, objects, and other components that work together to provide specific functionality or features for users, allowing them to perform tasks related to a particular business process or function.
Comments
Admin Feb 8, 2020

An app is a group of tabs that work as a unit to provide functionality. Users can switch between apps using the Force app drop-down menu at the top-right corner of every page.

You can customize existing apps to match the way you work, or build new apps by grouping standard and custom tabs.

Navigation to create app in Sales force: Setup ->Build ->Create->App-> Click on new and create your application according to your requirements.

Ques:- What are the Report Types?
Right Answer:
The report types in Salesforce are:

1. Tabular Reports
2. Summary Reports
3. Matrix Reports
4. Joined Reports
Comments
Admin Feb 8, 2020

Four Types of report in Salesforce

<strong>Tabular Reports:</strong> We can only displays the grand total in the table form.

<strong>Summary Reports:</strong> It is a detail form of report in which the grouping done based on Columns.

<strong>Matrix Reports:</strong> It is a detail form of report in which the grouping done based on both Rows and Columns.

<strong>Joined Reports: </strong>We can join the two or more reports in the single report displayed in the form of blocks.

Ques:- What is object in Salesforce?
Right Answer:
In Salesforce, an object is a database table that stores data related to a specific topic or business process, such as Accounts, Contacts, or Opportunities.
Comments
Admin Feb 8, 2020

Custom objects are database tables that allow you to store data specific to your organization in Salesforce You can use custom objects to extend Salesforce functionality or to build new application functionality.

Once you have created a custom object, you can create a custom tab, custom related lists, reports, and dashboards for users to interact with the custom object data. You can also access custom object data through the Force API.

Navigation to create object in sales force: Setup->Build->Create->Object-> Click on new object and create object according to your requirement.

Ques:- Does user can create insert their own custom logo, while creating their own custom applications?
Right Answer:
Yes, users can upload and use their own custom logo when creating custom applications in Salesforce.
Comments
Admin Feb 8, 2020

Yes user can upload their custom logo in documents and then they choose that logo for organization.

Ques:- What are the key components of the Alfresco architecture
Right Answer:
The key components of the Alfresco architecture are:

* **Alfresco Content Repository:** The core content store.
* **Alfresco Share:** The web-based user interface.
* **Alfresco Process Services (Activiti):** The workflow engine.
* **Search Subsystem (Solr or Elasticsearch):** Provides search capabilities.
* **Transformation Framework:** Enables content transformations.
* **Authentication Subsystem:** Manages user authentication and authorization.
* **APIs (REST, CMIS):** Provide interfaces for external applications.
Ques:- What is continuous integration/continuous deployment (CI/CD) and how does it benefit software development
Right Answer:
Continuous Integration (CI) is the practice of frequently merging code changes into a central repository, where automated builds and tests are run. Continuous Deployment (CD) is the practice of automatically deploying every change that passes the tests to production.

Benefits of CI/CD include:
1. Faster development and release cycles.
2. Early detection of bugs and issues.
3. Improved collaboration among team members.
4. Higher quality software with fewer defects.
5. Reduced manual work and deployment errors.
Ques:- How do you use preprocessor directives in ARM Compiler
Right Answer:
In ARM Compiler, you use preprocessor directives by starting a line with a `#` symbol. Common directives include `#define` to create macros, `#include` to include header files, and `#ifdef`/`#ifndef` for conditional compilation. For example:

```c
#define MAX_SIZE 100

#include "myheader.h"

#ifdef DEBUG
// Debugging code here
#endif
```
Ques:- What is the role of PDL (Parameter Definition Language) in Ab Initio
Right Answer:
PDL (Parameter Definition Language) in Ab Initio is used to define and manage parameters for graphs and components, allowing for dynamic configuration and customization of data processing jobs. It enables the specification of values that can be easily changed without modifying the underlying code.
Ques:- How does RTE ensure data consistency in communication
Right Answer:
RTE ensures data consistency in communication by using a combination of mechanisms such as data versioning, synchronization points, and the use of consistent data types. It manages the timing of data updates and ensures that all components access the most recent and valid data through the use of a reliable communication protocol and by maintaining a consistent state across the system.
Ques:- What is AJAX and how does it work
Right Answer:
AJAX (Asynchronous JavaScript and XML) is a web development technique that allows web pages to communicate with a server and update content asynchronously without reloading the entire page. It works by using JavaScript to send requests to the server, which can return data (often in JSON or XML format) that the browser can then use to update the webpage dynamically.
Ques:- What is responsive design and how do you implement it
Right Answer:
Responsive design is an approach to web development that ensures a website looks and functions well on various devices and screen sizes. It is implemented using flexible grid layouts, fluid images, and CSS media queries to adapt the layout and content based on the device's screen size and orientation.
Ques:- What is the difference between synchronous and asynchronous code
Right Answer:
Synchronous code executes sequentially, meaning each operation must complete before the next one starts. Asynchronous code allows operations to run independently, enabling other tasks to proceed without waiting for the previous ones to finish.
Ques:- What is the difference between frontend and backend development
Right Answer:
Frontend development refers to the part of a website or application that users interact with directly, including the layout, design, and user interface. Backend development involves the server-side, focusing on databases, server logic, and application functionality that users do not see.
Ques:- What is the difference between var let and const in JavaScript
Right Answer:
`var` is function-scoped or globally-scoped and can be re-declared and updated. `let` is block-scoped, can be updated but not re-declared in the same scope. `const` is also block-scoped, cannot be updated or re-declared, and must be initialized at the time of declaration.
AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users