0 / 60 seg.

What will happen if you attempt to call this function with checkConcatThreshold("a");?

int checkConcatThreshold(string a, string b) {
    return (a + b).length () > 120;
}