download Mastguru Android App

Question Detail

x=x+1 is equivalent to

  • ++x
  • x++
  • x=x-1
  • None of these
Similar Questions :

1. Constructor has return type

  • True
  • False

2. Main method parameter has which type of data type

  • int
  • char
  • string
  • double

3. Private Constructors can't be access from any derived classes neither from another class

  • True
  • False

4. Session beans are created by the client submitting the query to the database

  • True
  • False

5. what is jdb

  • java compiler
  • java Interpreter
  • java Disassemble
  • java debugger
Read more from - Java Objective Questions Answers -Chapter 1
Post a comment

  • Nandhakumar 10 years ago

    ans is D,becoz X=X+1 equivalent is X += 1, not X++