

InterviewSolution
Saved Bookmarks
1. |
If `A = ({:(2, 3), (6, 9):})`, then find |A|. |
Answer» Correct Answer - A Given `A = [{:(2, 3), (6, 9):}], |A| = |{:(2, 3), (6, 9):}| = (18-18)` `=0 ( therefore |{:(a, b), (c, d):}| = (ad-bc)).` |
|