Consider the two code segments below. Which one is better and Why? If you have any other idea, please do mention. Where can I find answers to coding p
bool MyApplication::ReportGenerator::GenerateReport() { return isAdmin() && isConditionOne() && isConditionTwo() && isConditionThree() && generateReport(); // Everything's ok. }