الرئيسية problem solving C++ Quizzes C++ Quiz C++ Quiz basics array loop if function pointer اختبار لغة السي بلس بلس في الجمل الشرطية في هذا القسم يوجد اختبار لغة السي بلس بلس في الجمل الشرطية ف اذا كنت قد درست الجمل الشرطية في ال ++c يمكنك الان البدء باختبار نفسك في الelse if و فهمك لها /7 72 votes, 4 avg 6230 اختبار نوفيل في لغة سي بلس بلس نوع الاختبار ifابدء الاختبار الان و فكر جيداً قبل الاجابة على اي سؤال , بالتوفيق للجميع. 1 / 7 ما هي نتيجة هذا البرنامج؟#include <iostream>using namespace std;int main (){ int x = 5; if(x++ == 5) cout<<"Five"<<endl; else if(++x == 6) cout<<"Six"<<endl; return 0;} Five Six FiveSix Compilation Error 2 / 7 ما هي نتيجة هذا الكود؟#include <iostream>using namespace std;int main (){ if(0) { cout<<"Hi"; } else { cout<<"Bye"; } return 0;} Hi Bye HiBye Compilation Error 3 / 7 ما هي نتيجة هذا الكود؟#include <iostream>using namespace std;int main (){ int n; for (n = 5; n > 0; n--) { cout << n; if (n == 3) break; } return 0;} 543 54 5432 53 4 / 7 اذا قام المستخدم بادخال 5 الى هذا البرنامج , فما هي نتيجة البرنامج؟#include <iostream>using namespace std;int main (){ int a; cin>>a; // user can enter any value if (++a*5 <= 25) { cout<<"Hello"; } else { cout<<"Bye";} return 0;} Hello Bye Undefined Compilation Error 5 / 7 اي مما يلي صحيح اذا تحدثنا عن الـ if في الـ c++؟ if expression if { expression if ( expression ) expression if 6 / 7 ما هي نتيجة هذا البرنامج؟#include <iostream>using namespace std;int main (){ int x = 5; if(-1 == -1){cout<<"Hey..";} else{cout<<"Nouvil.com";} return 0;} Hey.. Nouvil.com Compilation Error لا شئ مما سبق 7 / 7 ما هي نتيجة هذا الكود؟#include <iostream>using namespace std;int main (){ int a = 1; switch(a) { case 1: cout<<"One"; case 2: cout<<"Two"; case 3: cout<<"Three"; break; default: cout<<"Default";} return 0;} One Two OneTwoThree Default Your score is LinkedIn Facebook Twitter VKontakte 0% Restart quiz قيم هذا الاختبار من فضلك Send feedback