Tag: programming languages

Questions Related to programming languages

public class Question { public static void main(String args[]) { int x=y=10; y=12; System.out.print(x+"&"+y); } }

  1. 10 & 12

  2. 10 & 10

  3. Compile Time Error

  4. None


Correct Option: C
  1. StringBuilder

  2. StringBuffer

  3. Both (1) and (2)

  4. None of the above


Correct Option: B