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
Â
Â
Â


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
Â
Â
Â


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
Â
Â
Â


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