ConditionsOn this pageConditionsIf conditionfunc main()={ if ( 2<3 ) { printLine("foo"); } else if (true) { print("c"); }}While Loopfunc foo() = { int x = 3; while (x<=4) { x++; print(x); }}