InterviewSolution
Saved Bookmarks
| 1. |
Pick out the correct statement.(a) Pre Increment is faster than post-increment(b) post-increment is faster than Pre Increment(c) pre increment is slower than post-increment(d) pre decrement is slower than post-increment |
|
Answer» Correct option is (a) Pre Increment is faster than post-increment To explain I would say: Because Pre Increment take one-byte instruction & post increment takes two-byte instruction. |
|