es
Feedback
اسئله برمجيه Programming Questions

اسئله برمجيه Programming Questions

Ir al canal en Telegram

تعلم البرمجه من الاسئله 💖 ..... قنواتنا 》》 @Arab_Victory قناتنا علئ يوتيوب 》》https://youtube.com/channel/UCDmvenVK0qPY5MlWT6fT82Q . موقعنا علئ الويب 》》https://python-arabs.blogspot.com للتبادل : @DrdataY

Mostrar más
379
Suscriptores
Sin datos24 horas
Sin datos7 días
Sin datos30 días
Archivo de publicaciones
لانشاء حقل البيانات لكتابة النصوص الكبيرة نستخدم الوسم ....
Anonymous voting

لتحديد اكثر من عمود في الجدول لتنسيقها مع بعض نستخدم الوسم ....
Anonymous voting

لعمل خلفية ملونه للصفحة نستخدم ...
Anonymous voting

يمكن تقسيم عناصر الادخال في النماذج الكبيرة الئ اقسام يوضع كل منها في اطار مستقل نستخدم الوسم ....
Anonymous voting

يمكن تغيير عرض الصور داخل الصفحة باستخدام ...
Anonymous voting

لعرض النصوص و المحارف الخاصة في الصفحة نستخدم ...
Anonymous voting

يتم انشاء منطقة ذيل الجدول بواسطة Tag ...
Anonymous voting

يتم انشاء الفقرات في مستند html بواسطه ال Tag ..
Anonymous voting

تحديد محاذاة النص داخل الفقرات في الوسط نستخدم
Anonymous voting

مسائل html and css

#Python A = [[]] * 3 A[0] .append(5) print(A)
Anonymous voting

#Python a = [0 , 1 , 2 , 3 ] i = -2 for i not in a : print(i) i += 1
Anonymous voting

#Python elements = [0 , 1 , 2] def incr(x): return x+1 print(list(map(incr,elements)))
Anonymous voting

#python i=0 while i < 3: i = i + 1 print(i)
Anonymous voting

//c++ #include using namespace std; int main() { int i = 0; while (i++ < 3) cout << i; }
Anonymous voting

//c++ #include using namespace std; int main() { int a = 3, b = 5; int t = a; a = b; b = t; cout << a << "\n" << b; }
Anonymous voting

//c++ #include using namespace std; int main() { int a = 1; if (a--) cout << "True"; if (a++) cout << "False"; }
Anonymous voting

//c++ #include using namespace std; int main() { int x = 5 * 2 / 8 + 10; cout << x; return 0; }
Anonymous voting

//c++ #include using namespace std; int main() { int size = 8; int arr[size]; if (arr[5]) cout << "Good"; else cout << "Learning"; return 0; }
Anonymous voting

//c++ #include using namespace std; int main() { int c , a = 1 , b = 2; c = a++ + ++b; cout << c << "\n" << a << "\n" << b; }
Anonymous voting