Input
Output
public class Callbyvalue1 { int amt=60; void interest(Callbyvalue1 cv){ cv.amt=cv.amt+100; } public static void main(String args[]) { Callbyvalue1 cv=new Callbyvalue1(); System.out.println("Before Interest Amount "+cv.amt); cv.interest(cv);// passing object as a value System.out.println("After Interest Amount "+cv.amt); } }