VIP Exclusive

CodeSignal General Coding Assessment (GCA) VIP Practice Exam

Codesignal Practice Test — The CodeSignal General Coding Assessment (GCA) is a standardized technical skills evaluation administered by CodeSignal (formerly CodeFights) consisting of 4 progressively harder algorithmic coding tasks to be completed in 70 minutes; it is scored on a proprietary scale (roughly 300–850) and widely used by tech companies as a pre-interview hiring screen — this multiple-choice practice set covers the same data-structures, algorithms, and complexity-analysis knowledge domains tested on the GCA.

54
Questions
90m
Time Limit
70.00%
To Pass
Question 1 of 54👑 VIP

You are given a function that contains two nested for-loops: the outer loop runs n times and the inner loop runs from 0 to the current value of the outer index i. What is the time complexity of this function? for i in range(n): for j in range(i): process(i, j)

Questions 2–54 and full explanations are VIP-exclusive.