InterviewSolution
Saved Bookmarks
| 1. |
In which direction does the assignment operation will take place?(a) left to right(b) right to left(c) top to bottom(d) bottom to topI got this question during a job interview.Question is taken from Essential Operators in chapter Source Files, Classes and Operator Overloading in C++ of C++ |
|
Answer» CORRECT CHOICE is (b) right to left Easy explanation - In ASSIGNMENT operation, the flow of EXECUTION will be from right to left only. |
|