🤩2👍1🤔1
👍1🤩1
ثالث جيل للحاسوب هو جيل ....
Anonymous Quiz
28%
الترانزستور
22%
الحاسوب الدقيق
50%
الدوائر المتكاملة
👍1🤩1💩1
👍3🤩1
خامس جيل للحاسوب هو جيل ....
Anonymous Quiz
16%
الحاسوب الدقيق
15%
الترانزستور
69%
الحاسوب بحجم الكف
❤2👍2🤩2👏1
حاسوب يستعمل المعلومات المتقطعه و المتغيرات بواسطة الاعداد و يعتبر ملائما للاستعمالات التجارية و العلمية وهو من اكثر الحاسبات مرونة في تنفيذ العمليات
Anonymous Quiz
15%
الحاسبات التناظرية
63%
الحاسبات الرقمية
22%
الحاسبات الهجينة
👍2🤩1
//c++
#include<iostream>
using namespace std; int main() { int c , a = 1 , b = 2; c = a++ + ++b; cout << c << "\n" << a << "\n" << b; }
#include<iostream>
using namespace std; int main() { int c , a = 1 , b = 2; c = a++ + ++b; cout << c << "\n" << a << "\n" << b; }
Anonymous Quiz
56%
4 2 3
28%
1 2 3
16%
4 5 6
🥰1
//c++
#include <iostream>
using namespace std; int main() { int size = 8; int arr[size]; if (arr[5]) cout << "Good"; else cout << "Learning"; return 0; }
#include <iostream>
using namespace std; int main() { int size = 8; int arr[size]; if (arr[5]) cout << "Good"; else cout << "Learning"; return 0; }
Anonymous Quiz
41%
Good
45%
Learning
14%
None
👍1
//c++
#include <iostream>
using namespace std; int main() { int x = 5 * 2 / 8 + 10; cout << x; return 0; }
#include <iostream>
using namespace std; int main() { int x = 5 * 2 / 8 + 10; cout << x; return 0; }
Anonymous Quiz
9%
15
15%
10
65%
11
11%
20
👍3
//c++
#include <iostream>
using namespace std; int main() { int a = 1; if (a--) cout << "True"; if (a++) cout << "False"; }
#include <iostream>
using namespace std; int main() { int a = 1; if (a--) cout << "True"; if (a++) cout << "False"; }
Anonymous Quiz
29%
True
30%
False
41%
None
//c++
#include <iostream>
using namespace std; int main() { int a = 3, b = 5; int t = a; a = b; b = t; cout << a << "\n" << b; }
#include <iostream>
using namespace std; int main() { int a = 3, b = 5; int t = a; a = b; b = t; cout << a << "\n" << b; }
Anonymous Quiz
16%
5 5
28%
3 5
42%
5 3
14%
3 3
Anonymous Quiz
36%
123
51%
012
13%
None
👍4
Anonymous Quiz
46%
[1 , 2 , 3]
23%
[0 , 1 , 2]
11%
None
21%
Error
Anonymous Quiz
38%
-2 -1
15%
0
38%
Error
9%
None
👍2