if numNeighbors >= 3 || numNeighbors = 4 ++numNeighbors; cout << "You are dead!" << endl; else --numNeighbors; --------- Describe the output produced by this poorly indented program segment: int number = 4; double alpha = -1.0; if (number > 0) if (alpha > 0) cout << "Here I am!" << endl; else cout << "No, I’m here!" << endl; cout << "No, actually, I’m here!" << endl; -------------- Assign a value to double variable cost depending on the value of integer variable distance as follows: Distance Cost ----------------------------------- ---------- 0 through 100 5.00 More than 100 but not more than 500 8.00 More than 500 but less than 1,000 10.00 1,000 or more 12.00 //A year, occurring once every four years, that has 366 days including February 29 as an intercalary day. Assign true to the boolean variable leapYear if the integer variable year is a leap year. (A leap year is a multiple of 4, and if it is a multiple of 100, it must also be a multiple of 400.)/ -------- If integer variable currentNumber is odd, change its value so that it is now 3 times currentNumber plus 1, otherwise change its value so that it is now half of currentNumber (rounded down when currentNumber is odd).