InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the assignment operator?(a) (c) =(d) == |
|
Answer» Correct choice is (a) <- For explanation: The operators <- and = can be used, almost interchangeably, to assign to a variable in the same environment. The assignment operator is a left-pointing arrow, so creating and declaring variables looks like this: foo |
|