جافا Java
https://twitter.com/altmemy199/status/1704219778229960819?t=UmzCyCmlyZ1DVA2FeQ4ljA&s=19 اذا شفت تفاعل 🙂 بسوي سلسلة كيف تستفيد من github education يعطوك حساب مدفوع مجاني وفيه استضافات وبرامج كثيره مجانيه
X (formerly Twitter)
التميمي (@altmemy199) on X
كيفية الحصول على حزمة GitHub Student Developer Pack
للعديد من الطلاب الذين يشعرون بالشغف تجاه التكنولوجيا، يعد الوصول المحدود إلى الأدوات والموارد الأساسية تحديًا شائعًا. لحسن الحظ، تأتي حزمة GitHub Student Developer Pack للإنقاذ. توفر هذه الحزمة للطلاب…
للعديد من الطلاب الذين يشعرون بالشغف تجاه التكنولوجيا، يعد الوصول المحدود إلى الأدوات والموارد الأساسية تحديًا شائعًا. لحسن الحظ، تأتي حزمة GitHub Student Developer Pack للإنقاذ. توفر هذه الحزمة للطلاب…
❤1
ترجع نسخة من الـ String الذي قام باستدعائها مقسمة على شكل مصفوفة نوعها String.
Anonymous Quiz
33%
charAt()
30%
split()
28%
substring
9%
replaceAll()
Java assigns a default value to a data member of a class if the data is not initialized.
Anonymous Quiz
65%
True
35%
False
You cannot declare a local variable in a method that has same name as an instance variable in the class.
Anonymous Quiz
53%
True
47%
False
#loop
The while loop repeats a set of code while the condition is not met?
The while loop repeats a set of code while the condition is not met?
Anonymous Quiz
39%
True
61%
False
جافا Java
الكود صح او خطأ مع السبب
بعد هذا التحدي عندي تحدي جديد نوصل 800 مشترك بس نشوف من قد التحدي 🫡😁
https://x.com/altmemy199?t=eKA2Mw7n2ODYoTpNE3UNFg&s=09
https://x.com/altmemy199?t=eKA2Mw7n2ODYoTpNE3UNFg&s=09
X (formerly Twitter)
التميمي (@altmemy199) / X
🖥️مهندس برمجيات ،عاشق للبرمجة بشكل خاص ،والتقنيةبشكل عام. 📚 أنقل ما أتعلم، ولدي بعض الأهتمام في الإدارة والتسويق.
https://t.co/ztRZHyvPUv
https://t.co/ztRZHyvPUv
جافا Java
الكود صح او خطأ مع السبب
الكود صحيح مافي اي غلط ما احتجنا نكتب System في جمل الطباعة لانه بالساس قمنا بتظمينها وحطيناها وعمل import لكلمه out يعني الان اي كلمة out الكود بيعتبرها انها من الكلاس System
import static java.lang.System.out;
هذا سطر التضمين
import static java.lang.System.out;
هذا سطر التضمين
❤1
What is true about a break?
Anonymous Quiz
21%
Break forces the control out of the loop and starts the execution of next iteration
4%
Break halts the execution of the loop for certain time frame
29%
Break halts the execution and forces the control out of the loop
46%
Break stops the execution of entire program
What is true about do statement?
Anonymous Quiz
19%
do statement executes the code more than once always
21%
do statement checks the condition at the beginning of the loop
52%
do statement executes the code of a loop at least once
9%
do statement does not get execute if condition is not matched in the first iteration
Which of the following is used with the switch statement?
Anonymous Quiz
9%
do
4%
Exit
9%
Continue
78%
break
What is the valid data type for variable “a” to print “Hello World”?
switch(a) { System.out.println("Hello World"); }
switch(a) { System.out.println("Hello World"); }
Anonymous Quiz
36%
byte and char
41%
char and long
13%
int and float
9%
byte and short
Which of the following is not a decision making statement?
Anonymous Quiz
15%
if
13%
if-else
26%
switch
46%
do-while