What is the output of the following program?public class ipl{public static void main(String args[]){int hi=-1;if(hi)System.out.println("RCB made it to playoffs");elseSystem.out.println("Delhi are out of playoffs");
#include <iostream>using namespace std;int main(){int p;bool a = true;bool b = false;int x = 10;int y = 5;p = ((x | y) + (a + b));cout << p;return 0;}