This is from a text that I'm reading.
By "query the status of any pair of vertices", I assume the author means "to check whether the two vertices are adjacent"? From there how do they go about checking for triangle-freeness? What would the order of the number of steps required be?

There are only $\Theta(n^2)$ pairs of vertices in the graph, so you can query every pair; then you simply check every triplet in the graph to see if they form a triangle.