Correct Answer: D. It stores mainly the neighbors that actually exist rather than all possible vertex pairs
Explanation:
Sparse graphs contain far fewer edges than possible pairs. Adjacency lists use memory roughly proportional to vertices plus edges rather than the square of vertex count.
Correct Answer: D. Whether an edge connects vertex i to vertex j
Explanation:
An adjacency matrix records pairwise connections using rows and columns for vertices. For a simple graph, entries are commonly 1 for an edge and 0 otherwise.
Following is not necessarily reciprocal, so the relationship has an origin and destination. A directed edge can represent A following B without implying B follows A.
A mutual friendship relation has no separate source and destination under the usual definition. An undirected edge represents the connection symmetrically.
Correct Answer: B. An eigenvector and its negative define the same component direction
Explanation:
Reversing all signs changes the orientation of the axis but not the line it spans or the variance captured. Scores reverse correspondingly, leaving reconstruction and geometry unchanged.
Correct Answer: A. Mapping retained component scores back into an approximation of the original feature space
Explanation:
Retained scores are multiplied by their component directions and the feature means are restored. With fewer components, the result approximates rather than exactly reproduces the original data.
Correct Answer: B. PCA constructs new combined features, whereas feature selection retains a subset of original features
Explanation:
Principal components are weighted combinations and therefore transform the coordinate system. Feature selection preserves the meanings of chosen original variables.
Correct Answer: B. Choose the smallest set that reaches a desired proportion of total variance
Explanation:
Cumulative explained variance shows how much information is retained as components are added. A threshold offers a practical balance between compression and variance preservation.