top of page
Apex Salesforce


How to Print Fibonacci Series in Apex Salesforce
public class fibonacci { public static void printnumber(){ integer n=10, firstterm =0,secondterm =1; for(integer i=1;i<=n;i++){ integer...
Abhilash Banpurkar
Oct 12, 20221 min read
219 views
1 comment


TRIGGER SCENARIO WITH TEST CLASS
Different Trigger Scenario With Test Class
Abhilash Banpurkar
Oct 10, 20221 min read
3 views
0 comments


Programs on Apex Salesforce
Print a Program in Apex : Print Oscar I.t Solutions system.debug('Oscar I.t Solution'); Output: Add two Number In Apex Integer num1...
Abhilash Banpurkar
Oct 2, 20221 min read
13 views
0 comments
Important Trigger Solved Example
1 Update Child Object based on Parent Object Field. Trigger updatecontacttype on Account(after update){ Set<ID> accids =new Set<id>();...
Abhilash Banpurkar
Sep 21, 20221 min read
18 views
0 comments
bottom of page