Operators

© examsiri.com
Question : 11 of 23
 
Marks: +1, -0
Given:
class Feline {
  public static void main(String[] args) {
   Long x = 42L;
   Long y = 44L;
   System.out.print(" " + 7 + 2 + " ");
   System.out.print(foo() + x + 5 + " ");
   System.out.println(x + y + foo());
  }
  static String foo() { return "foo"; }
}

What is the result?
Go to Question: