///
Considere o algoritmo a seguir, escrito em linguagem de programação JAVA:
1. public class questao {
2. public static void main(String[] args) {
3. String texto = "CONCURSO IFSUL 2023";
4. funcao1(texto);
5. funcao2(texto);
6. funcao3(9, 14, texto);
7. funcao4("IFSul", "Concurso", texto);
8. funcao1(texto);
9. System.out.println(texto);
10. }
11. public static String funcao1(String txt) {
12. return txt.toUpperCase();
13. }
14. public static String funcao2(String txt) {
15. return txt.toLowerCase();
16. }
17. public static void funcao3(int x, int y, String txt) {
18. txt.substring(x, y);
19. }
20. public static String funcao4(String a, String b, String txt) {
21. return txt.replaceAll(a, b);
22. }
23.}Após a execução do algoritmo, será impresso