Concept:For (f∘g)(x), first evaluate g(x) on each proper sub-interval, then apply f to those outputs and take the union of the ranges.Explanation:The given g(x) has overlapping rules on 0≤x≤1, so rewrite it as a single-valued function:g(x)=⎩⎨⎧−x,x,−x,−2≤x≤00≤x<11≤x≤3All outputs of g(x) lie in [−3,2], so on these values we use f(t)=1+35t.Case 1: −2≤x≤0g(x)=−x, hence(f∘g)(x)=1+35(−x)=1−35xAt x=−2, value is 313; at x=0, value is 1.So range is [1,313].Case 2: 0≤x<1g(x)=x, hence(f∘g)(x)=1+35xRange is [1,38).Case 3: 1≤x≤3g(x)=−x, hence(f∘g)(x)=1+35(−x)=1−35xAt x=1, value is −32; at x=3, value is −4.Range is [−4,−32].Combining the three ranges, the minimum value is −4 and the maximum value is 313.Thus the required range interval is [−4,313].Answer:Option C: [−4,313]