Computer Science, asked by lizale007, 27 days ago

what is the output for the following statement ?a =7 ;system.out.in print ("a" + a )​

Answers

Answered by Oreki
3

\text{\large\bf Given Snippet}

    \texttt{int a = 7;}\\\texttt{System.out.print("a " + a);}

\text{\large\bf \symbol{79}utput}

     \texttt{a 7}

Answered by atrs7391
2

Snippet:

a =7 ;

System.out.println("a" + a);

Output:

a7

Similar questions