MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code snippetopt.fun(p,q);Which is an equivalent code for the above code snippet? |
| A. | opt.fun(p && q); |
| B. | opt(fun)["p","q"]; |
| C. | opt.fun(p) && opt.fun(q); |
| D. | opt["fun"](p,q); |
| E. | None of these |
| Answer» E. None of these | |