What is the order of operations Systemoutprintlndouble Integ
     What is the order of operations?  System.out.println((double) Integer.parselnt(\"015\") + (int)3.8);  double, parselnt, +, int  double, int, parselnt, +  fill in: 
  
  Solution
answr is (b) double,int,ParseInt,+,int
if there is any inner paranthesis then,that will be executed first.
double and int have inner paranthesis so that will execute first then parseInt then \'+\'.
**********************END******************PLS GIVE ME GOOD RATING*******************************

