If $S = \sum_{n=1}^{243} \frac{1}{n^{4/5}} $.
Find the value of $\lfloor S \rfloor$ where $\lfloor \cdot \rfloor$ represents the greatest integer function.
By approximation using definite integral, I know the answer lies in the set $[10,15]$ (approximately) but I don't know how to find the exact sum.
You're getting a very loose approximation with the integral if you start at $0$, because $\int_0^1 x^{-4/5}\,dx = 5$. That's the majority of the error.
To avoid this, write $$S = 1 + \sum_{n=2}^{243} \frac1{n^{4/5}}$$ and then use integrals to put upper and lower bounds on the sum from $2$ to $243$. Since the function $f(x) = \frac1{x^{4/5}}$ is decreasing for $x>0$, we have $$\int_2^{244} \frac1{x^{4/5}}\,dx < \sum_{n=2}^{243} \frac1{n^{4/5}} < \int_1^{243} \frac1{x^{4/5}}\,dx$$ and that should be enough to estimate the sum closely enough to find the floor $\lfloor S\rfloor$.