پاسخ تمرین های فصل : عملگرهای منطقی
زیر فصل: ساده سازی مقایسه با bool

  1. چه عبارتی در کنسول نمایش داده می‌شود؟

    bool isStudent = true;
    bool isReadyForExam = false;
    bool canPlayGame = false;
    if(isStudent && !isReadyForExam)
        canPlayGame = false;
    else if(!isStudent || isReadyForExam)
        canPlayGame = true;
    string gamePermission = canPlayGame == false ? "Can Not" :       "Can";
    Console.WriteLine("You " + gamePermission + " Play Game");

    You Can Not Play Game