num = 1234What is the output of the following python programreversed_num = 0while num != 0:digit = num % 10reversed_num = reversed_num * 10 + digitnum //= 10print("Reversed Number: " + str(reversed_num))
public class Test{public static void main(String[] args) {/*****Boolean b=false; ******/ //n1String b="false";switch(b) {. //n2case "FALSE";System.out.println("a");}}}
public static void main (String[ ] args){What is the output of the following code?int x = 5;x++;x = (x + 7 );System.out.println(x);}
h1 {color: red text-decoration: underline; font-style: italic;}