top of page
Apex Salesforce


Write an apex program to find out the biggest number from the given two numbers.
Apex Program to Find out the biggest Number using if else condition integer firstNumber,secondNumber; firstNumber=1000;...
Abhilash Banpurkar
Nov 10, 20221 min read
26 views
0 comments


Write an apex program to calculate the simple interest
Program for Simple interest: integerprincipalAmount,tenure,rateofinterest, interestAmount; principalAmount=20000; tenure=5;...
Abhilash Banpurkar
Nov 10, 20221 min read
10 views
0 comments


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


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
bottom of page