#include stdio.hint main() {int result = (3 + 4) * (3 + 4) * (3 + 4);printf("(3 + 4)^3 = %d\n", result);return 0;}
public class Test2 { public static void main(String[] args) { StringBuffer s1 = new StringBuffer("Complete"); s1.setCharAt(1,'i'); s1.setCharAt(7,'d'); System.out.println(s1); } }
int main(){char *ptr = "Theoretical";ptr = "practical";printf("%s",ptr);return 0;}
chars = ['a', 'z', 'c', 'x']What is the output of the following python programsorted_chars = sorted(chars)print(sorted_chars)