Computer Science, asked by leo465rs, 6 months ago

Given a string S = “AQUA RIUM”. If n is length/2, then what would the following return? (i) S[:n] (ii) S[n:] (iii) S[n:n] (iv) S[1:n]

Answers

Answered by Oreki
1

Answer:

I. AQUA

II. RIUM

III.

IV. QUA

Similar questions