Iqra Technology

Apex Collections

❮ Previous Next ❯ Apex Collections In Apex, collections are used to store multiple values in a single variable. They are similar to arrays but more powerful and flexible. There are three main types of collections in Apex:  • List – Ordered collection (allows duplicates)• Set – Unordered collection (no duplicates) • Map – Key-value […]

Apex Collections Read More »

Apex Loops

❮ Previous Next ❯ Apex Loops Loops are used to repeat a block of code multiple times. Instead of writing the same lines again and again, loops allow you to automate repetition based on a condition.  In Apex, the most commonly used loops are:  • for loop • while loop • do-while loop 1. for

Apex Loops Read More »

Apex Operators (Arithmetic, Logical, etc.)

❮ Previous Next ❯ Apex Operators Operators are special symbols used to perform operations on variables and values. These operations can be mathematical, logical, comparative, or assignment based. In Apex, just like in other programming languages, operators help us manipulate data, make decisions, and control program flow.  Let’s break them down into different categories: 1.

Apex Operators (Arithmetic, Logical, etc.) Read More »