Difference between prefix and postfix forms of the
++operator?

Answers were Sorted based on User's Feedback



Difference between prefix and postfix forms of the ++operator?..

Answer / ranganathkini

The prefix ++ operator first increments the value by one and
then returns the new value.

The postfix ++ operator first returns the value and then
increments it.

Is This Answer Correct ?    36 Yes 1 No

Difference between prefix and postfix forms of the ++operator?..

Answer / ravikiran

prefix will increment first and assigns to the variable
postfix will assing the value to the variable and then
increments

Is This Answer Correct ?    21 Yes 1 No

Difference between prefix and postfix forms of the ++operator?..

Answer / uday ray

They behave differently when they are used in expressions on
the right hand side of an assignment statement. A prefix
operator first adds 1 to the operand and the result is
assigned to the variable on left. On the other hand, a post
fix operator first assign the value to the variable on left
and then increments the operands.

Is This Answer Correct ?    5 Yes 2 No

Post New Answer

More Core Java Interview Questions

Can we override a variable in java?

0 Answers  


What is the generic class?

0 Answers  


Explain the polymorphism principle?

0 Answers  


what is difference between Action messages and Action errors?

3 Answers   Bio Imagene, TCS,


How do you override a method?

0 Answers  






What are new features introduced with java 8 ?

0 Answers  


how to print output with out using sop statements

5 Answers   UHG,


Where pragma is used?

0 Answers  


What is an array in java?

0 Answers  


what modifiers are used with top-level class?

2 Answers  


Which is the best way of exception handling?

2 Answers   Oracle,


What are the advantages of inner classes?

0 Answers  


Categories