• Ashutosh Mohan
  • NEWBIE
  • 5 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 2
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
public class addition {
    integer a,b,c;
    public void add(){
        a=2;b=4;
    c=a+b;
        
system.debug('the add is :' +c);
        }
}


addition c = new addition();
c.add();
i want to update bulk record . in Object email field is mandatory ,i want to update with N/A all records
i want to update bulk record . in Object email field is mandatory ,i want to update with N/A all records
public class addition {
    integer a,b,c;
    public void add(){
        a=2;b=4;
    c=a+b;
        
system.debug('the add is :' +c);
        }
}


addition c = new addition();
c.add();