Mytutorialrack

Blogs

Home - Blog - Page 27

Salesforce

Overview of Platform Developer 1 exam

Platform Developer 1 exam is one of the certification exam to become a Salesforce developer. It tests your knowledge in Salesforce Development and also some parts of out-of-the-box features of Salesforce. Platform Developer 1 exam is divided into multiple sections. Each section has different weightage. Below is the list of topics and also the weightage

Read More »

Salesforce Developer Training for Beginners

Are you afraid of coding? Do you feel nervous when you write code? You feel like coding is hard for you? if you are one of them, then join my Course.  This course will take you from a complete beginner in programming to a Salesforce developer. You don’t need to know Java or any other

Read More »

What are Lightning web components?

In this blog post we will learn about Lightning Web Components. These days browsers have become so powerful and advance that there is no need for any Javascript libraries. There was time when web developers were dependent heavily on frameworks like JQuery,Angular or React. Similary in case of Salesforce,we had aura frameworks in 2014. In

Read More »

Basics of Apex programming

In this tutorial, we will learn about apex programming. We will learn about classes, Datatypes, Variables and constants. What is Apex class? A class is a template through which we create objects. A class contains group of variables and methods. We can create object using the class. Data types and variables- Basics of Coding In

Read More »

Salesforce App Exchange

In this blog post, we will learn about Salesforce AppExchange.Salesforce appExchange is a business app store hosted by Salesforce.com for salesforce users to enhance business requirements. More about Salesforce AppExchange: Salesforce Appexchange is very similar to google app store where user can find, try and install apps which are built using Force.com platforms. There are

Read More »
Test Coverage in Salesforce
Uncategorized

Test Coverage and Deploying in Salesforce

In this blogpost, we will learn about Test Coverage in Salesforce. Arguably the most important skill for Salesforce developers is to know how to migrate their customizations to a production environment.Although you can make changes to code directly in a Developer instance, in order to do so for a Production instance, you must first make

Read More »
Uncategorized

Object Classes in Salesforce

At the heart of OOP is the type of class which represents a single object . These classes store attributes as well as methods specific to that object. Object classes can be created as stand-alone classes,complete with constructors, or they can be nested within other classes—commonly referred to as wrapper classes —and used to “wrap”

Read More »
Uncategorized

Governor Limits In Apex

In this blog post we will learn about Governor limits. As Apex executes on the force.com platform, which is run on a shared tenancy architecture, Salesforce imposes certain limits as to the level of resources consumed within a single thread by applications built on the platform. These limits are collectively known as Governor Limits. These

Read More »
Collections in Apex
Uncategorized

Collections in Apex

Collections In this blog post we will learn about collections in Apex. There are three different types of collections in apex: List, Set and Map. Collections are composite data types which allow the developer to aggregate, or collect, multiple other types into a single variable.  List  A list (also called an array) is a variable

Read More »
Uncategorized

Primitive Data Types in Apex

Primitive Data Types in Apex In this blog post we will learn about the different primitive data types which are available in Apex. Primitive data types are basic pieces of a programming language that include built-in support. In most languages, these types cannot be modified and are used as basic building blocks to construct application

Read More »