#include stdio.hvoid solve() {int a = 3;int res = a++ + ++a + a++ + ++a;printf("%d", res);}int main() {solve();return 0;}
 What will be the output of following Java code?public class Main {  public static void main(String[] args) {    String str = "Sookshmas";    str = "knowingis justnot enough";    System.out.println(str);  }}
 Q The correct sequence of phases of cell cycle is .