CodeSignal GCA: four questions, seventy minutes, one score
The General Coding Assessment is not a normal take-home. It is a timed, standardised test with a score attached to you rather than to the application, and companies reuse it. Treating it like any other online assessment is the most expensive mistake available here.
The shape of the test
Four questions, seventy minutes total, one timer across all of them, and a difficulty ramp that is deliberate rather than random.
- Question 1 — a warm-up. String or array manipulation, solvable in five to ten minutes. It exists to check that you can use the editor.
- Questions 2 and 3 — the real body of the test. Medium difficulty, twenty to twenty-five minutes each if you are honest about the budget.
- Question 4 — hard, and frequently unfinished. Plenty of strong scores come from people who never completed it.
You pick your language from a long list, and you get a run button with sample cases. As on any auto-graded platform, the visible cases are not the full grading set.
The budget that actually survives contact
The failure mode is always the same: someone spends thirty-five minutes on question 2 because they nearly have it, and arrives at question 3 with fifteen minutes and no composure.
Set hard limits before you start. Ten minutes on Q1, twenty on Q2, twenty on Q3, whatever is left on Q4. When a limit runs out, submit whatever passes and move on. You can come back. What you cannot do is get the minutes back.
If a question is not yielding in the first five minutes, write the brute force. A correct slow solution scores; an elegant unfinished one does not.
What the number means
CodeSignal reports a certified score rather than a pass or fail, and the scale has changed — older material quotes a 300 to 850 range, while current assessments report on a 200 to 600 scale. Before you calibrate yourself against any number you read online, check which scale the employer is quoting. A "600" means very different things on the two.
The part that matters more than the scale: a certified score can be shared with other companies that accept it. One good sitting can clear several first rounds, which is an argument for preparing properly for the first attempt rather than using it as a practice run.
Preparing for the format, not just the problems
The algorithms are ordinary — arrays, strings, hash maps, sorting, two pointers, occasionally a graph traversal. The difficulty is that they arrive under a shared clock in an unfamiliar editor.
- Practise in one seventy-minute block, not in ten-minute pieces. The skill being tested is triage under time, and you cannot rehearse triage in isolation.
- Learn your language's standard library cold. Sorting with a custom comparator, a counter or frequency map, a deque. Looking these up costs minutes you budgeted for thinking.
- Write the edge cases first — empty input, one element, duplicates. Two minutes there beats a resubmission cycle.
The day itself
Full battery, wired network if you have one, phone in another room, and one uninterrupted seventy-minute window. The test does not pause because something happened in your flat.
And keep the last three minutes free. Re-run each accepted solution against an empty input and a single element. That habit rescues more points on the GCA than any additional algorithm you could learn the night before.
FAQ
How long is the CodeSignal General Coding Assessment?
Seventy minutes for four questions, on a single shared timer. The difficulty climbs from a warm-up to a hard final question that many strong candidates never finish.
What is a good CodeSignal score?
It depends which scale your report uses — current assessments report on a 200 to 600 scale, while older thresholds circulating online refer to a 300 to 850 range. Ask the employer which band they expect rather than trusting a number out of context.
Can the same score be used for more than one company?
Yes, that is the point of a certified assessment: employers that accept CodeSignal certification can read a score you already have, so a strong first sitting can clear several screens.
Can I retake the GCA?
Retakes are usually allowed after a waiting period, but the policy is set in the invitation you received. Read it before you treat the first attempt as a rehearsal.