Programming Quiz Channel
الذهاب إلى القناة على Telegram
Programming quizzes and knowledge tests Short quizzes on programming, logic and computer science. Test and improve your coding knowledge. Join 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist
إظهار المزيد790
المشتركون
+124 ساعات
+77 أيام
+1530 أيام
جاري تحميل البيانات...
القنوات المماثلة
لا توجد بيانات
هل تواجه مشاكل؟ يرجى تحديث الصفحة أو الاتصال بمدير الدعم الخاص بنا.
سحابة العلامات
لا توجد بيانات
هل تواجه مشاكل؟ يرجى تحديث الصفحة أو الاتصال بمدير الدعم الخاص بنا.
الإشارات الواردة والصادرة
---
---
---
---
---
---
جذب المشتركين
سبتمبر '26
سبتمبر '26
+15
في 4 قنوات
أغسطس '26
+33
في 3 قنوات
Get PRO
يوليو '26
+30
في 2 قنوات
Get PRO
يونيو '26
+51
في 4 قنوات
Get PRO
مايو '26
+38
في 3 قنوات
Get PRO
أبريل '26
+55
في 5 قنوات
Get PRO
مارس '26
+68
في 5 قنوات
Get PRO
فبراير '26
+167
في 5 قنوات
Get PRO
يناير '260
في 0 قنوات
Get PRO
ديسمبر '250
في 0 قنوات
Get PRO
نوفمبر '250
في 0 قنوات
Get PRO
أكتوبر '250
في 0 قنوات
Get PRO
سبتمبر '250
في 0 قنوات
Get PRO
أغسطس '250
في 0 قنوات
Get PRO
يوليو '250
في 0 قنوات
Get PRO
يونيو '250
في 0 قنوات
Get PRO
مايو '250
في 0 قنوات
Get PRO
أبريل '250
في 0 قنوات
Get PRO
مارس '250
في 0 قنوات
Get PRO
فبراير '25
+23
في 0 قنوات
Get PRO
يناير '25
+53
في 0 قنوات
Get PRO
ديسمبر '24
+132
في 0 قنوات
Get PRO
نوفمبر '24
+293
في 0 قنوات
| التاريخ | نمو المشتركين | الإشارات | القنوات | |
| 15 سبتمبر | +1 | |||
| 14 سبتمبر | +3 | |||
| 13 سبتمبر | 0 | |||
| 12 سبتمبر | +2 | |||
| 11 سبتمبر | +3 | |||
| 10 سبتمبر | +2 | |||
| 09 سبتمبر | 0 | |||
| 08 سبتمبر | +1 | |||
| 07 سبتمبر | 0 | |||
| 06 سبتمبر | +1 | |||
| 05 سبتمبر | +1 | |||
| 04 سبتمبر | +1 | |||
| 03 سبتمبر | 0 | |||
| 02 سبتمبر | 0 | |||
| 01 سبتمبر | 0 |
منشورات القناة
What is the primary advantage of a hash map over a balanced binary search tree for key-value storage?
| 2 | What does the 'volatile' keyword guarantee for a Java field? | 31 |
| 3 | What does this print, in order? | 136 |
| 4 | Topic: Python
🔍 Quick look before the question:
def outer():
x = 10
def inner():
nonlocal x
x += 5
return x
return inner
f = outer()
print(f())
print(f()) | 130 |
| 5 | What is a primary key's main purpose in a relational table? | 176 |
| 6 | Which of these creates a shallow copy of a list in Python? | 62 |
| 7 | What is the practical difference between Object.is(NaN, NaN) and NaN === NaN? | 56 |
| 8 | Which isolation level allows a transaction to read data another concurrent transaction has written but not yet committed? | 586 |
| 9 | What does this print? | 66 |
| 10 | Topic: Debugging & Code Output
🔍 Quick look before the question:
def outer():
result = []
for i in range(3):
def inner():
return i
result.append(inner)
return [f() for f in result]
print(outer()) | 58 |
| 11 | Why is wrapping both UPDATEs in a single transaction important here? | 69 |
| 12 | Topic: SQL
🔍 Quick look before the question:
BEGIN TRANSACTION;
UPDATE accounts SET balance = balance - 200 WHERE id = 1;
UPDATE accounts SET balance = balance + 200 WHERE id = 2;
COMMIT; | 69 |
| 13 | What gets printed? | 76 |
| 14 | Topic: Debugging & Code Output
🔍 Quick look before the question:
for i in range(5):
if i == 3:
continue
print(i) | 78 |
| 15 | In Python, what is the result of 3 ** 2? | 84 |
| 16 | What does Array.prototype.map() return? | 285 |
| 17 | What does the SQL DISTINCT keyword do? | 97 |
| 18 | What will counter reliably print, and why? | 106 |
| 19 | Topic: Java
🔍 Quick look before the question:
public class Test {
static int counter = 0;
static synchronized void increment() {
counter++;
}
public static void main(String[] args) throws InterruptedException {
Thread t1 = new Thread(() -> {
for (int i = 0; i < 1000; i++) increment();
});
Thread t2 = new Thread(() -> {
for (int i = 0; i < 1000; i++) increment();
});
t1.start(); t2.start();
t1.join(); t2.join();
System.out.println(counter);
}
} | 89 |
| 20 | Which Python keyword defines a named function? | 91 |
